]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/print.stderr
Auto merge of #68717 - petrochenkov:stabexpat, r=varkor
[rust.git] / tests / ui / print.stderr
index f2d2afd9bf782d1695e62c94d064c7ac6954ee3f..208d95326285133812d440de7d0740216a34ee6e 100644 (file)
@@ -1,60 +1,54 @@
 error: use of `Debug`-based formatting
-  --> $DIR/print.rs:13:19
+  --> $DIR/print.rs:11:19
    |
-13 |         write!(f, "{:?}", 43.1415)
+LL |         write!(f, "{:?}", 43.1415)
    |                   ^^^^^^
    |
-   = note: `-D use-debug` implied by `-D warnings`
-
-error: use of `Debug`-based formatting
-  --> $DIR/print.rs:20:19
-   |
-20 |         write!(f, "{:?}", 42.718)
-   |                   ^^^^^^
+   = note: `-D clippy::use-debug` implied by `-D warnings`
 
 error: use of `println!`
-  --> $DIR/print.rs:25:5
+  --> $DIR/print.rs:23:5
    |
-25 |     println!("Hello");
+LL |     println!("Hello");
    |     ^^^^^^^^^^^^^^^^^
    |
-   = note: `-D print-stdout` implied by `-D warnings`
+   = note: `-D clippy::print-stdout` implied by `-D warnings`
 
 error: use of `print!`
-  --> $DIR/print.rs:26:5
+  --> $DIR/print.rs:24:5
    |
-26 |     print!("Hello");
+LL |     print!("Hello");
    |     ^^^^^^^^^^^^^^^
 
 error: use of `print!`
-  --> $DIR/print.rs:28:5
+  --> $DIR/print.rs:26:5
    |
-28 |     print!("Hello {}", "World");
+LL |     print!("Hello {}", "World");
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: use of `print!`
-  --> $DIR/print.rs:30:5
+  --> $DIR/print.rs:28:5
    |
-30 |     print!("Hello {:?}", "World");
+LL |     print!("Hello {:?}", "World");
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: use of `Debug`-based formatting
-  --> $DIR/print.rs:30:12
+  --> $DIR/print.rs:28:12
    |
-30 |     print!("Hello {:?}", "World");
+LL |     print!("Hello {:?}", "World");
    |            ^^^^^^^^^^^^
 
 error: use of `print!`
-  --> $DIR/print.rs:32:5
+  --> $DIR/print.rs:30:5
    |
-32 |     print!("Hello {:#?}", "#orld");
+LL |     print!("Hello {:#?}", "#orld");
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: use of `Debug`-based formatting
-  --> $DIR/print.rs:32:12
+  --> $DIR/print.rs:30:12
    |
-32 |     print!("Hello {:#?}", "#orld");
+LL |     print!("Hello {:#?}", "#orld");
    |            ^^^^^^^^^^^^^
 
-error: aborting due to 9 previous errors
+error: aborting due to 8 previous errors