2019-05-23 18:11:38 +00:00
|
|
|
// FIXME: Ideally these suggestions would be fixed via rustfix. Blocked by rust-lang/rust#53934
|
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#![allow(clippy::print_literal)]
|
|
|
|
#![warn(clippy::print_with_newline)]
|
2016-08-05 15:52:58 +00:00
|
|
|
|
|
|
|
fn main() {
|
2017-02-08 13:58:07 +00:00
|
|
|
print!("Hello\n");
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: using `print!()` with a format string that ends in a single newline
|
|
|
|
//~| NOTE: `-D clippy::print-with-newline` implied by `-D warnings`
|
2017-02-08 13:58:07 +00:00
|
|
|
print!("Hello {}\n", "world");
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: using `print!()` with a format string that ends in a single newline
|
2018-08-07 20:01:10 +00:00
|
|
|
print!("Hello {} {}\n", "world", "#2");
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: using `print!()` with a format string that ends in a single newline
|
2017-02-08 13:58:07 +00:00
|
|
|
print!("{}\n", 1265);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: using `print!()` with a format string that ends in a single newline
|
2020-09-14 18:58:39 +00:00
|
|
|
print!("\n");
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: using `print!()` with a format string that ends in a single newline
|
2016-08-05 15:52:58 +00:00
|
|
|
|
|
|
|
// these are all fine
|
2016-10-06 20:30:03 +00:00
|
|
|
print!("");
|
|
|
|
print!("Hello");
|
2016-08-05 15:52:58 +00:00
|
|
|
println!("Hello");
|
|
|
|
println!("Hello\n");
|
|
|
|
println!("Hello {}\n", "world");
|
2016-10-06 20:30:03 +00:00
|
|
|
print!("Issue\n{}", 1265);
|
|
|
|
print!("{}", 1265);
|
2016-10-12 10:00:26 +00:00
|
|
|
print!("\n{}", 1275);
|
2018-08-07 20:01:10 +00:00
|
|
|
print!("\n\n");
|
|
|
|
print!("like eof\n\n");
|
|
|
|
print!("Hello {} {}\n\n", "world", "#2");
|
2023-07-28 18:40:44 +00:00
|
|
|
// #3126
|
|
|
|
println!("\ndon't\nwarn\nfor\nmultiple\nnewlines\n");
|
|
|
|
// #3126
|
|
|
|
println!("\nbla\n\n");
|
2019-02-18 03:32:58 +00:00
|
|
|
|
|
|
|
// Escaping
|
2023-07-28 18:40:44 +00:00
|
|
|
// #3514
|
|
|
|
print!("\\n");
|
|
|
|
print!("\\\n");
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: using `print!()` with a format string that ends in a single newline
|
2019-02-18 03:32:58 +00:00
|
|
|
print!("\\\\n");
|
|
|
|
|
|
|
|
// Raw strings
|
2023-07-28 18:40:44 +00:00
|
|
|
// #3778
|
|
|
|
print!(r"\n");
|
2019-02-18 16:39:23 +00:00
|
|
|
|
|
|
|
// Literal newlines should also fail
|
|
|
|
print!(
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: using `print!()` with a format string that ends in a single newline
|
2019-02-18 16:39:23 +00:00
|
|
|
"
|
|
|
|
"
|
|
|
|
);
|
|
|
|
print!(
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: using `print!()` with a format string that ends in a single newline
|
2019-02-18 16:39:23 +00:00
|
|
|
r"
|
|
|
|
"
|
|
|
|
);
|
2019-11-03 04:41:22 +00:00
|
|
|
|
|
|
|
// Don't warn on CRLF (#4208)
|
|
|
|
print!("\r\n");
|
|
|
|
print!("foo\r\n");
|
2023-07-28 18:40:44 +00:00
|
|
|
// should fail
|
|
|
|
print!("\\r\n");
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: using `print!()` with a format string that ends in a single newline
|
2022-08-30 12:20:49 +00:00
|
|
|
print!("foo\rbar\n");
|
|
|
|
|
|
|
|
// Ignore expanded format strings
|
|
|
|
macro_rules! newline {
|
|
|
|
() => {
|
|
|
|
"\n"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
print!(newline!());
|
2016-08-05 15:52:58 +00:00
|
|
|
}
|