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
399 B
Rust
Raw Normal View History

2023-10-05 07:59:15 -05:00
// run-rustfix
fn main() {
let x = "x";
let y = "y";
2023-10-05 07:59:15 -05: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
}