rust/tests/ui/fmt/format-args-non-identifier-diagnostics.rs

11 lines
398 B
Rust

// Checks that there is a suggestion for simple tuple index access expression (used where an
// identifier is expected in a format arg) to use positional arg instead, with a note to move
// the expression into a local variable.
// Issue: <https://github.com/rust-lang/rust/issues/114108>.
//@ run-rustfix
fn main() {
let x = (1,);
println!("{x.0}");
//~^ ERROR invalid format string
}