rust/tests/ui/to_string_in_format_args_incremental.fixed

10 lines
200 B
Rust

//@run-rustfix
//@compile-flags: -C incremental=target/debug/test/incr
// see https://github.com/rust-lang/rust-clippy/issues/10969
fn main() {
let s = "Hello, world!";
println!("{}", s);
}