rust/tests/ui/did_you_mean/issue-105225.fixed

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
400 B
Rust
Raw Normal View History

2023-10-05 12:59:15 +00:00
//@ run-rustfix
fn main() {
let x = "x";
let y = "y";
2023-10-05 12:59:15 +00:00
println!("{x}", );
//~^ ERROR: redundant argument
println!("{x} {}", x, );
//~^ ERROR: redundant argument
println!("{} {x}", x, );
//~^ ERROR: redundant argument
println!("{x} {y}", );
//~^ ERROR: redundant arguments
println!("{} {} {x} {y} {}", x, x, x, );
//~^ ERROR: redundant arguments
}