mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-15 10:07:30 +00:00
cf5d4a1b45
Literal `\n` characters (not a newline) in a `r"raw"` string should not fail the lint. This affects both write_with_newline and print_with_newline, so it is added in both places. I also copied a missing test case from write_with_newline over to print_with_newline and added a note that one of those tests is supposed to fail.
33 lines
789 B
Rust
33 lines
789 B
Rust
#![allow(clippy::print_literal)]
|
|
#![warn(clippy::print_with_newline)]
|
|
|
|
fn main() {
|
|
print!("Hello\n");
|
|
print!("Hello {}\n", "world");
|
|
print!("Hello {} {}\n", "world", "#2");
|
|
print!("{}\n", 1265);
|
|
|
|
// these are all fine
|
|
print!("");
|
|
print!("Hello");
|
|
println!("Hello");
|
|
println!("Hello\n");
|
|
println!("Hello {}\n", "world");
|
|
print!("Issue\n{}", 1265);
|
|
print!("{}", 1265);
|
|
print!("\n{}", 1275);
|
|
print!("\n\n");
|
|
print!("like eof\n\n");
|
|
print!("Hello {} {}\n\n", "world", "#2");
|
|
println!("\ndon't\nwarn\nfor\nmultiple\nnewlines\n"); // #3126
|
|
println!("\nbla\n\n"); // #3126
|
|
|
|
// Escaping
|
|
print!("\\n"); // #3514
|
|
print!("\\\n"); // should fail
|
|
print!("\\\\n");
|
|
|
|
// Raw strings
|
|
print!(r"\n"); // #3778
|
|
}
|