rust/tests/ui/print_with_newline.stderr

118 lines
2.7 KiB
Plaintext
Raw Normal View History

error: using `print!()` with a format string that ends in a single newline
2023-07-27 11:40:22 +00:00
--> $DIR/print_with_newline.rs:7:5
2018-10-06 09:18:06 -07:00
|
LL | print!("Hello\n");
2018-10-06 09:18:06 -07:00
| ^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::print-with-newline` implied by `-D warnings`
help: use `println!` instead
|
LL - print!("Hello\n");
2021-08-11 14:21:33 +00:00
LL + println!("Hello");
2022-06-15 14:15:54 +03:00
|
2017-09-29 19:13:21 +02:00
error: using `print!()` with a format string that ends in a single newline
2023-07-27 11:40:22 +00:00
--> $DIR/print_with_newline.rs:8:5
2018-10-06 09:18:06 -07:00
|
LL | print!("Hello {}\n", "world");
2018-10-06 09:18:06 -07:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-10-26 21:53:42 +02: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 14:15:54 +03:00
|
error: using `print!()` with a format string that ends in a single newline
2023-07-27 11:40:22 +00:00
--> $DIR/print_with_newline.rs:9:5
2018-10-06 09:18:06 -07:00
|
LL | print!("Hello {} {}\n", "world", "#2");
2018-10-06 09:18:06 -07:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-10-26 21:53:42 +02: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 14:15:54 +03:00
|
error: using `print!()` with a format string that ends in a single newline
2023-07-27 11:40:22 +00:00
--> $DIR/print_with_newline.rs:10:5
|
LL | print!("{}\n", 1265);
| ^^^^^^^^^^^^^^^^^^^^
2019-10-26 21:53:42 +02:00
|
help: use `println!` instead
|
LL - print!("{}\n", 1265);
2021-08-11 14:21:33 +00:00
LL + println!("{}", 1265);
2022-06-15 14:15:54 +03:00
|
error: using `print!()` with a format string that ends in a single newline
2023-07-27 11:40:22 +00:00
--> $DIR/print_with_newline.rs:11:5
|
LL | print!("\n");
| ^^^^^^^^^^^^
|
help: use `println!` instead
|
LL - print!("\n");
2021-08-11 14:21:33 +00:00
LL + println!();
2022-06-15 14:15:54 +03:00
|
error: using `print!()` with a format string that ends in a single newline
2023-07-27 11:40:22 +00:00
--> $DIR/print_with_newline.rs:30:5
|
LL | print!("\\\n"); // should fail
| ^^^^^^^^^^^^^^
2019-10-26 21:53:42 +02:00
|
help: use `println!` instead
|
LL - print!("\\\n"); // should fail
LL + println!("\\"); // should fail
2022-06-15 14:15:54 +03:00
|
error: using `print!()` with a format string that ends in a single newline
2023-07-27 11:40:22 +00:00
--> $DIR/print_with_newline.rs:37:5
|
LL | / print!(
LL | | "
LL | | "
LL | | );
| |_____^
2019-10-26 21:53:42 +02:00
|
help: use `println!` instead
|
2021-08-11 14:21:33 +00:00
LL ~ println!(
2022-08-30 12:20:49 +00:00
LL ~
|
error: using `print!()` with a format string that ends in a single newline
2023-07-27 11:40:22 +00:00
--> $DIR/print_with_newline.rs:41:5
|
LL | / print!(
LL | | r"
LL | | "
LL | | );
| |_____^
2019-10-26 21:53:42 +02:00
|
help: use `println!` instead
|
2021-08-11 14:21:33 +00:00
LL ~ println!(
2022-08-30 12:20:49 +00:00
LL ~
|
error: using `print!()` with a format string that ends in a single newline
2023-07-27 11:40:22 +00:00
--> $DIR/print_with_newline.rs:49:5
|
LL | print!("\\r\n"); // should fail
| ^^^^^^^^^^^^^^^
|
help: use `println!` instead
|
LL - print!("\\r\n"); // should fail
LL + println!("\\r"); // should fail
2022-06-15 14:15:54 +03:00
|
2022-08-30 12:20:49 +00:00
error: aborting due to 9 previous errors
2018-01-16 17:06:27 +01:00