2019-05-23 18:11:38 +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:7:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | print!("Hello\n");
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::print-with-newline` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::print_with_newline)]`
|
2019-05-23 18:11:38 +00:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
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
|
|
|
|
2019-05-23 18:11:38 +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
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | print!("Hello {}\n", "world");
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2019-05-23 18:11:38 +00:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
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
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
|
2019-05-23 18:11:38 +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
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | print!("Hello {} {}\n", "world", "#2");
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2019-05-23 18:11:38 +00:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
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
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
|
2019-05-23 18:11:38 +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
|
2018-07-22 22:19:07 +00:00
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | print!("{}\n", 1265);
|
2018-07-22 22:19:07 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2019-05-23 18:11:38 +00:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL - print!("{}\n", 1265);
|
2021-08-11 14:21:33 +00:00
|
|
|
LL + println!("{}", 1265);
|
2022-06-15 11:15:54 +00:00
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
|
2019-05-23 18:11:38 +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
|
2020-09-24 12:49:22 +00:00
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | print!("\n");
|
2020-09-24 12:49:22 +00:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: use `println!` instead
|
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL - print!("\n");
|
2021-08-11 14:21:33 +00:00
|
|
|
LL + println!();
|
2022-06-15 11:15:54 +00:00
|
|
|
|
|
2020-09-24 12:49:22 +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
|
2019-02-18 03:32:58 +00:00
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | print!("\\\n");
|
2019-02-18 03:32:58 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2019-05-23 18:11:38 +00:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL - print!("\\\n");
|
|
|
|
LL + println!("\\");
|
2022-06-15 11:15:54 +00:00
|
|
|
|
|
2019-02-18 03:32:58 +00:00
|
|
|
|
2019-05-23 18:11:38 +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
|
2019-02-18 16:39:23 +00:00
|
|
|
|
|
|
|
|
LL | / print!(
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2019-02-18 16:39:23 +00:00
|
|
|
LL | | "
|
|
|
|
LL | | "
|
|
|
|
LL | | );
|
|
|
|
| |_____^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2019-05-23 18:11:38 +00:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ println!(
|
2023-08-24 19:32:12 +00:00
|
|
|
LL |
|
2022-09-21 17:02:37 +00:00
|
|
|
LL ~
|
2019-05-23 18:11:38 +00:00
|
|
|
|
|
2019-02-18 16:39:23 +00:00
|
|
|
|
2019-05-23 18:11:38 +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:53:5
|
2019-02-18 16:39:23 +00:00
|
|
|
|
|
|
|
|
LL | / print!(
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2019-02-18 16:39:23 +00:00
|
|
|
LL | | r"
|
|
|
|
LL | | "
|
|
|
|
LL | | );
|
|
|
|
| |_____^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2019-05-23 18:11:38 +00:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ println!(
|
2023-08-24 19:32:12 +00:00
|
|
|
LL |
|
2022-09-21 17:02:37 +00:00
|
|
|
LL ~
|
2019-05-23 18:11:38 +00:00
|
|
|
|
|
2019-02-18 16:39:23 +00:00
|
|
|
|
2019-11-03 04:41:22 +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:63:5
|
2019-11-03 04:41:22 +00:00
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | print!("\\r\n");
|
2019-11-03 04:41:22 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: use `println!` instead
|
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL - print!("\\r\n");
|
|
|
|
LL + println!("\\r");
|
2022-06-15 11:15:54 +00:00
|
|
|
|
|
2019-11-03 04:41:22 +00:00
|
|
|
|
2022-09-21 17:02:37 +00:00
|
|
|
error: aborting due to 9 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|