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