Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide/src/inlay_hints/closure_captures.rs')
-rw-r--r--crates/ide/src/inlay_hints/closure_captures.rs14
1 files changed, 7 insertions, 7 deletions
diff --git a/crates/ide/src/inlay_hints/closure_captures.rs b/crates/ide/src/inlay_hints/closure_captures.rs
index ddede5239e..d7e5332c41 100644
--- a/crates/ide/src/inlay_hints/closure_captures.rs
+++ b/crates/ide/src/inlay_hints/closure_captures.rs
@@ -121,11 +121,11 @@ fn main() {
// ^ move
// ^ (
// ^ &foo
-// ^ ,
+// ^ , $
// ^ bar
-// ^ ,
+// ^ , $
// ^ baz
-// ^ ,
+// ^ , $
// ^ qux
// ^ )
foo;
@@ -137,11 +137,11 @@ fn main() {
// ^ move
// ^ (
// ^ &foo
-// ^ ,
+// ^ , $
// ^ &bar
-// ^ ,
+// ^ , $
// ^ &baz
-// ^ ,
+// ^ , $
// ^ &qux
// ^ )
&foo;
@@ -161,7 +161,7 @@ fn main() {
// ^ move
// ^ (
// ^ &mut baz
-// ^ ,
+// ^ , $
// ^ &mut qux
// ^ )
baz = NonCopy;