]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/print.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / print.stderr
index 605e527c208a7aa9bbc4f2e589585a3651d4169a..9635011b906b9e24f7b088d4a38c2b1b9894d11f 100644 (file)
@@ -1,59 +1,59 @@
 error: use of `Debug`-based formatting
-  --> $DIR/print.rs:23:19
+  --> $DIR/print.rs:20:19
    |
-23 |         write!(f, "{:?}", 43.1415)
+LL |         write!(f, "{:?}", 43.1415)
    |                   ^^^^^^
    |
    = note: `-D clippy::use-debug` implied by `-D warnings`
 
 error: use of `Debug`-based formatting
-  --> $DIR/print.rs:30:19
+  --> $DIR/print.rs:27:19
    |
-30 |         write!(f, "{:?}", 42.718)
+LL |         write!(f, "{:?}", 42.718)
    |                   ^^^^^^
 
 error: use of `println!`
-  --> $DIR/print.rs:35:5
+  --> $DIR/print.rs:32:5
    |
-35 |     println!("Hello");
+LL |     println!("Hello");
    |     ^^^^^^^^^^^^^^^^^
    |
    = note: `-D clippy::print-stdout` implied by `-D warnings`
 
 error: use of `print!`
-  --> $DIR/print.rs:36:5
+  --> $DIR/print.rs:33:5
    |
-36 |     print!("Hello");
+LL |     print!("Hello");
    |     ^^^^^^^^^^^^^^^
 
 error: use of `print!`
-  --> $DIR/print.rs:38:5
+  --> $DIR/print.rs:35:5
    |
-38 |     print!("Hello {}", "World");
+LL |     print!("Hello {}", "World");
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: use of `print!`
-  --> $DIR/print.rs:40:5
+  --> $DIR/print.rs:37:5
    |
-40 |     print!("Hello {:?}", "World");
+LL |     print!("Hello {:?}", "World");
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: use of `Debug`-based formatting
-  --> $DIR/print.rs:40:12
+  --> $DIR/print.rs:37:12
    |
-40 |     print!("Hello {:?}", "World");
+LL |     print!("Hello {:?}", "World");
    |            ^^^^^^^^^^^^
 
 error: use of `print!`
-  --> $DIR/print.rs:42:5
+  --> $DIR/print.rs:39:5
    |
-42 |     print!("Hello {:#?}", "#orld");
+LL |     print!("Hello {:#?}", "#orld");
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: use of `Debug`-based formatting
-  --> $DIR/print.rs:42:12
+  --> $DIR/print.rs:39:12
    |
-42 |     print!("Hello {:#?}", "#orld");
+LL |     print!("Hello {:#?}", "#orld");
    |            ^^^^^^^^^^^^^
 
 error: aborting due to 9 previous errors