mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 12:29:21 +00:00
Classify function calls as functions when shadowed by types
This commit is contained in:
parent
f421ee6722
commit
426ad8e165
5 changed files with 31 additions and 16 deletions
|
@ -81,6 +81,10 @@ impl FooCopy {
|
|||
}
|
||||
}
|
||||
|
||||
fn str() {
|
||||
str();
|
||||
}
|
||||
|
||||
static mut STATIC_MUT: i32 = 0;
|
||||
|
||||
fn foo<'a, T>() -> T {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue