We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f77fd3 commit d98b4abCopy full SHA for d98b4ab
crates/ide-diagnostics/src/handlers/unresolved_method.rs
@@ -365,7 +365,7 @@ impl Dolphin {
365
366
#[allow(unused)]
367
fn say_hi_to(dolphin: &Dolphin) {
368
- println!("hello, {}", dolphin.name$0());
+ "hello " + dolphin.name$0();
369
}"#,
370
r#"
371
struct Dolphin;
@@ -375,8 +375,9 @@ impl Dolphin {
375
fn name(&self) { todo!() }
376
}
377
378
+#[allow(unused)]
379
- println!("hello, {}", dolphin.name());
380
+ "hello " + dolphin.name();
381
382
);
383
0 commit comments