8 lines
184 B
Rust
8 lines
184 B
Rust
|
fn main() {
|
||
|
let a = "a";
|
||
|
let b = "b";
|
||
|
|
||
|
println!("{a} {b} {} {} {c} {}", c = "c");
|
||
|
//~^ ERROR: invalid reference to positional arguments 1 and 2 (there is 1 argument)
|
||
|
}
|