]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/print_with_newline.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / print_with_newline.stderr
index 1bacc40bfb4fd6a3113ee69864dba48ea82356a7..2d76e447145b8aba80c794c52cd0fd8f5e80b53c 100644 (file)
@@ -1,28 +1,28 @@
-error: using `print!()` with a format string that ends in a newline, consider using `println!()` instead
--> $DIR/print_with_newline.rs:6:5
-  |
-6 |     print!("Hello/n");
-  |     ^^^^^^^^^^^^^^^^^^
-  |
-  = note: `-D print-with-newline` implied by `-D warnings`
+error: using `print!()` with a format string that ends in a single newline, consider using `println!()` instead
 --> $DIR/print_with_newline.rs:14:5
+   |
+LL |     print!("Hello/n");
+   |     ^^^^^^^^^^^^^^^^^
+   |
+   = note: `-D clippy::print-with-newline` implied by `-D warnings`
 
-error: using `print!()` with a format string that ends in a newline, consider using `println!()` instead
--> $DIR/print_with_newline.rs:7:5
-  |
-7 |     print!("Hello {}/n", "world");
-  |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+error: using `print!()` with a format string that ends in a single newline, consider using `println!()` instead
 --> $DIR/print_with_newline.rs:15:5
+   |
+LL |     print!("Hello {}/n", "world");
+   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-error: using `print!()` with a format string that ends in a newline, consider using `println!()` instead
--> $DIR/print_with_newline.rs:8:5
-  |
-8 |     print!("Hello {} {}/n/n", "world", "#2");
-  |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+error: using `print!()` with a format string that ends in a single newline, consider using `println!()` instead
 --> $DIR/print_with_newline.rs:16:5
+   |
+LL |     print!("Hello {} {}/n", "world", "#2");
+   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-error: using `print!()` with a format string that ends in a newline, consider using `println!()` instead
--> $DIR/print_with_newline.rs:9:5
-  |
-9 |     print!("{}/n", 1265);
-  |     ^^^^^^^^^^^^^^^^^^^^^
+error: using `print!()` with a format string that ends in a single newline, consider using `println!()` instead
 --> $DIR/print_with_newline.rs:17:5
+   |
+LL |     print!("{}/n", 1265);
+   |     ^^^^^^^^^^^^^^^^^^^^
 
 error: aborting due to 4 previous errors