Add failing test

This commit is contained in:
Greg Shuflin 2021-12-16 02:43:16 -08:00
parent dcec8be307
commit 2247d9b58e
1 changed files with 3 additions and 1 deletions

View File

@ -279,13 +279,15 @@ type Foo = { x: Int, y: Int }
impl Foo {
fn hella() {
self.x + 50
let a = 50
self.x + a
}
}
"#;
let (symbols, _) = add_symbols(source);
symbols.debug();
assert!(symbols.fq_names.table.get(&make_fqsn(&["<impl-block>Foo", "hella"])).is_some());
assert!(symbols.fq_names.table.get(&make_fqsn(&["<impl-block>Foo", "hella", "a"])).is_some());
}
#[test]