rust-clippy/tests/ui/crashes/ice-9405.rs

12 lines
164 B
Rust
Raw Normal View History

2022-09-01 03:24:29 +00:00
#![warn(clippy::useless_format)]
#![allow(clippy::print_literal)]
fn main() {
println!(
"\
{}",
"multiple skipped lines"
);
}