Temporarily remove method test in symbol table

This commit is contained in:
Greg Shuflin 2021-12-05 20:44:30 -08:00
parent d6c5cd100b
commit 71911f0ab5
3 changed files with 3 additions and 1 deletions

View File

@ -37,6 +37,7 @@ pub enum SymbolError {
BadAnnotation { name: String, msg: String },
}
#[allow(dead_code)]
#[derive(Debug)]
struct NameSpec<K> {
location: Location,

View File

@ -1,6 +1,5 @@
use std::{
collections::{hash_map::Entry, HashMap, HashSet},
rc::Rc,
str::FromStr,
};

View File

@ -271,6 +271,7 @@ fn duplicate_struct_members() {
);
}
/*
#[test]
fn methods() {
let source = r#"
@ -287,3 +288,4 @@ impl Foo {
symbols.debug();
assert!(symbols.fq_names.table.get(&make_fqsn(&["hella"])).is_some());
}
*/