summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/print_with_newline.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 18:31:44 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 18:31:44 +0000
commitc23a457e72abe608715ac76f076f47dc42af07a5 (patch)
tree2772049aaf84b5c9d0ed12ec8d86812f7a7904b6 /src/tools/clippy/tests/ui/print_with_newline.stderr
parentReleasing progress-linux version 1.73.0+dfsg1-1~progress7.99u1. (diff)
downloadrustc-c23a457e72abe608715ac76f076f47dc42af07a5.tar.xz
rustc-c23a457e72abe608715ac76f076f47dc42af07a5.zip
Merging upstream version 1.74.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/clippy/tests/ui/print_with_newline.stderr')
-rw-r--r--src/tools/clippy/tests/ui/print_with_newline.stderr55
1 files changed, 30 insertions, 25 deletions
diff --git a/src/tools/clippy/tests/ui/print_with_newline.stderr b/src/tools/clippy/tests/ui/print_with_newline.stderr
index b97711e77..7ff6a5f06 100644
--- a/src/tools/clippy/tests/ui/print_with_newline.stderr
+++ b/src/tools/clippy/tests/ui/print_with_newline.stderr
@@ -1,80 +1,82 @@
error: using `print!()` with a format string that ends in a single newline
- --> $DIR/print_with_newline.rs:8:5
+ --> $DIR/print_with_newline.rs:7:5
|
-LL | print!("Hello/n");
+LL | print!("Hello\n");
| ^^^^^^^^^^^^^^^^^
|
= 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");
+LL - print!("Hello\n");
LL + println!("Hello");
|
error: using `print!()` with a format string that ends in a single newline
- --> $DIR/print_with_newline.rs:9:5
+ --> $DIR/print_with_newline.rs:10:5
|
-LL | print!("Hello {}/n", "world");
+LL | print!("Hello {}\n", "world");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: use `println!` instead
|
-LL - print!("Hello {}/n", "world");
+LL - print!("Hello {}\n", "world");
LL + println!("Hello {}", "world");
|
error: using `print!()` with a format string that ends in a single newline
- --> $DIR/print_with_newline.rs:10:5
+ --> $DIR/print_with_newline.rs:12:5
|
-LL | print!("Hello {} {}/n", "world", "#2");
+LL | print!("Hello {} {}\n", "world", "#2");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: use `println!` instead
|
-LL - print!("Hello {} {}/n", "world", "#2");
+LL - print!("Hello {} {}\n", "world", "#2");
LL + println!("Hello {} {}", "world", "#2");
|
error: using `print!()` with a format string that ends in a single newline
- --> $DIR/print_with_newline.rs:11:5
+ --> $DIR/print_with_newline.rs:14:5
|
-LL | print!("{}/n", 1265);
+LL | print!("{}\n", 1265);
| ^^^^^^^^^^^^^^^^^^^^
|
help: use `println!` instead
|
-LL - print!("{}/n", 1265);
+LL - print!("{}\n", 1265);
LL + println!("{}", 1265);
|
error: using `print!()` with a format string that ends in a single newline
- --> $DIR/print_with_newline.rs:12:5
+ --> $DIR/print_with_newline.rs:16:5
|
-LL | print!("/n");
+LL | print!("\n");
| ^^^^^^^^^^^^
|
help: use `println!` instead
|
-LL - print!("/n");
+LL - print!("\n");
LL + println!();
|
error: using `print!()` with a format string that ends in a single newline
- --> $DIR/print_with_newline.rs:31:5
+ --> $DIR/print_with_newline.rs:39:5
|
-LL | print!("///n"); // should fail
+LL | print!("\\\n");
| ^^^^^^^^^^^^^^
|
help: use `println!` instead
|
-LL - print!("///n"); // should fail
-LL + println!("//"); // should fail
+LL - print!("\\\n");
+LL + println!("\\");
|
error: using `print!()` with a format string that ends in a single newline
- --> $DIR/print_with_newline.rs:38:5
+ --> $DIR/print_with_newline.rs:48:5
|
LL | / print!(
+LL | |
LL | | "
LL | | "
LL | | );
@@ -83,13 +85,15 @@ LL | | );
help: use `println!` instead
|
LL ~ println!(
+LL |
LL ~
|
error: using `print!()` with a format string that ends in a single newline
- --> $DIR/print_with_newline.rs:42:5
+ --> $DIR/print_with_newline.rs:53:5
|
LL | / print!(
+LL | |
LL | | r"
LL | | "
LL | | );
@@ -98,19 +102,20 @@ LL | | );
help: use `println!` instead
|
LL ~ println!(
+LL |
LL ~
|
error: using `print!()` with a format string that ends in a single newline
- --> $DIR/print_with_newline.rs:50:5
+ --> $DIR/print_with_newline.rs:63:5
|
-LL | print!("//r/n"); // should fail
+LL | print!("\\r\n");
| ^^^^^^^^^^^^^^^
|
help: use `println!` instead
|
-LL - print!("//r/n"); // should fail
-LL + println!("//r"); // should fail
+LL - print!("\\r\n");
+LL + println!("\\r");
|
error: aborting due to 9 previous errors