Classify function calls as functions when shadowed by types

This commit is contained in:
Lukas Wirth 2021-01-28 19:06:33 +01:00
parent f421ee6722
commit 426ad8e165
5 changed files with 31 additions and 16 deletions

View file

@ -81,6 +81,10 @@ impl FooCopy {
}
}
fn str() {
str();
}
static mut STATIC_MUT: i32 = 0;
fn foo<'a, T>() -> T {