Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide-completion/src/completions/dot.rs')
| -rw-r--r-- | crates/ide-completion/src/completions/dot.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/ide-completion/src/completions/dot.rs b/crates/ide-completion/src/completions/dot.rs index 31a8ed2c13..2cc2200df9 100644 --- a/crates/ide-completion/src/completions/dot.rs +++ b/crates/ide-completion/src/completions/dot.rs @@ -1093,7 +1093,7 @@ impl Foo { fn foo(&mut self) { let _: fn(&mut Self) = |this| { $0 } } }"#, me this.foo() fn(&mut self) lc self &mut Foo lc this &mut Foo - md core + md core:: sp Self Foo st Foo Foo tt Fn @@ -1117,7 +1117,7 @@ impl Foo { fn foo(&self) { let _: fn(&Self) = |foo| { $0 } } }"#, me self.foo() fn(&self) lc foo &Foo lc self &Foo - md core + md core:: sp Self Foo st Foo Foo tt Fn @@ -1137,7 +1137,7 @@ impl Foo { fn foo(&self) { let _: fn(&Self) = || { $0 } } }"#, fd self.field i32 me self.foo() fn(&self) lc self &Foo - md core + md core:: sp Self Foo st Foo Foo tt Fn @@ -1159,7 +1159,7 @@ impl Foo { fn foo(&self) { let _: fn(&Self, &Self) = |foo, other| { $0 } } }"#, lc foo &Foo lc other &Foo lc self &Foo - md core + md core:: sp Self Foo st Foo Foo tt Fn |