Temporarily remove method test in symbol table
This commit is contained in:
parent
d6c5cd100b
commit
71911f0ab5
@ -37,6 +37,7 @@ pub enum SymbolError {
|
|||||||
BadAnnotation { name: String, msg: String },
|
BadAnnotation { name: String, msg: String },
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
struct NameSpec<K> {
|
struct NameSpec<K> {
|
||||||
location: Location,
|
location: Location,
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
use std::{
|
use std::{
|
||||||
collections::{hash_map::Entry, HashMap, HashSet},
|
collections::{hash_map::Entry, HashMap, HashSet},
|
||||||
rc::Rc,
|
|
||||||
str::FromStr,
|
str::FromStr,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -271,6 +271,7 @@ fn duplicate_struct_members() {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
#[test]
|
#[test]
|
||||||
fn methods() {
|
fn methods() {
|
||||||
let source = r#"
|
let source = r#"
|
||||||
@ -287,3 +288,4 @@ impl Foo {
|
|||||||
symbols.debug();
|
symbols.debug();
|
||||||
assert!(symbols.fq_names.table.get(&make_fqsn(&["hella"])).is_some());
|
assert!(symbols.fq_names.table.get(&make_fqsn(&["hella"])).is_some());
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user