2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-03-02 06:17:31 +00:00
rust-clippy/tests/ui/crashes/ice-9405.rs
2022-09-01 00:00:37 -04:00

11 lines
164 B
Rust

#![warn(clippy::useless_format)]
#![allow(clippy::print_literal)]
fn main() {
println!(
"\
{}",
"multiple skipped lines"
);
}