rust-clippy/tests/ui/print_with_newline.stderr

123 lines
2.7 KiB
Text
Raw Normal View History

error: using `print!()` with a format string that ends in a single newline
2024-02-17 12:16:29 +00:00
--> tests/ui/print_with_newline.rs:7:5
2018-10-06 16:18:06 +00:00
|
LL | print!("Hello\n");
2018-10-06 16:18:06 +00:00
| ^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::print-with-newline` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::print_with_newline)]`
help: use `println!` instead
|
LL - print!("Hello\n");
2021-08-11 14:21:33 +00:00
LL + println!("Hello");
2022-06-15 11:15:54 +00:00
|
2017-09-29 17:13:21 +00:00
error: using `print!()` with a format string that ends in a single newline
2024-02-17 12:16:29 +00:00
--> tests/ui/print_with_newline.rs:10:5
2018-10-06 16:18:06 +00:00
|
LL | print!("Hello {}\n", "world");
2018-10-06 16:18:06 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: use `println!` instead
|
LL - print!("Hello {}\n", "world");
2021-08-11 14:21:33 +00:00
LL + println!("Hello {}", "world");
2022-06-15 11:15:54 +00:00
|
error: using `print!()` with a format string that ends in a single newline
2024-02-17 12:16:29 +00:00
--> tests/ui/print_with_newline.rs:12:5
2018-10-06 16:18:06 +00:00
|
LL | print!("Hello {} {}\n", "world", "#2");
2018-10-06 16:18:06 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: use `println!` instead
|
LL - print!("Hello {} {}\n", "world", "#2");
2021-08-11 14:21:33 +00:00
LL + println!("Hello {} {}", "world", "#2");
2022-06-15 11:15:54 +00:00
|
error: using `print!()` with a format string that ends in a single newline
2024-02-17 12:16:29 +00:00
--> tests/ui/print_with_newline.rs:14:5
|
LL | print!("{}\n", 1265);
| ^^^^^^^^^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: use `println!` instead
|
LL - print!("{}\n", 1265);
2021-08-11 14:21:33 +00:00
LL + println!("{}", 1265);
2022-06-15 11:15:54 +00:00
|
error: using `print!()` with a format string that ends in a single newline
2024-02-17 12:16:29 +00:00
--> tests/ui/print_with_newline.rs:16:5
|
LL | print!("\n");
| ^^^^^^^^^^^^
|
help: use `println!` instead
|
LL - print!("\n");
2021-08-11 14:21:33 +00:00
LL + println!();
2022-06-15 11:15:54 +00:00
|
error: using `print!()` with a format string that ends in a single newline
2024-02-17 12:16:29 +00:00
--> tests/ui/print_with_newline.rs:39:5
|
LL | print!("\\\n");
| ^^^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: use `println!` instead
|
LL - print!("\\\n");
LL + println!("\\");
2022-06-15 11:15:54 +00:00
|
error: using `print!()` with a format string that ends in a single newline
2024-02-17 12:16:29 +00:00
--> tests/ui/print_with_newline.rs:48:5
|
LL | / print!(
LL | |
LL | | "
LL | | "
LL | | );
| |_____^
2019-10-26 19:53:42 +00:00
|
help: use `println!` instead
|
2021-08-11 14:21:33 +00:00
LL ~ println!(
LL |
LL ~
|
error: using `print!()` with a format string that ends in a single newline
2024-02-17 12:16:29 +00:00
--> tests/ui/print_with_newline.rs:53:5
|
LL | / print!(
LL | |
LL | | r"
LL | | "
LL | | );
| |_____^
2019-10-26 19:53:42 +00:00
|
help: use `println!` instead
|
2021-08-11 14:21:33 +00:00
LL ~ println!(
LL |
LL ~
|
error: using `print!()` with a format string that ends in a single newline
2024-02-17 12:16:29 +00:00
--> tests/ui/print_with_newline.rs:63:5
|
LL | print!("\\r\n");
| ^^^^^^^^^^^^^^^
|
help: use `println!` instead
|
LL - print!("\\r\n");
LL + println!("\\r");
2022-06-15 11:15:54 +00:00
|
error: aborting due to 9 previous errors
2018-01-16 16:06:27 +00:00