rust/tests/ui/did_you_mean/issue-105225-named-args.rs

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

11 lines
196 B
Rust
Raw Permalink Normal View History

fn main() {
let x = "x";
let y = "y";
println!("{x}", x, x = y);
//~^ ERROR: redundant argument
println!("{x}", x = y, x = y);
//~^ ERROR: duplicate argument named `x`
}