mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
11 lines
164 B
Rust
11 lines
164 B
Rust
#![warn(clippy::useless_format)]
|
|
#![allow(clippy::print_literal)]
|
|
|
|
fn main() {
|
|
println!(
|
|
"\
|
|
|
|
{}",
|
|
"multiple skipped lines"
|
|
);
|
|
}
|