]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/panic_unimplemented.stderr
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / panic_unimplemented.stderr
index e357050b739be011fd4deb5199f8a645d62c673c..588fa187b4ab07b8619472988378bb1424bc6a8b 100644 (file)
@@ -1,33 +1,33 @@
 error: you probably are missing some parameter in your format string
-  --> $DIR/panic_unimplemented.rs:14:16
+  --> $DIR/panic_unimplemented.rs:5:16
    |
-14 |         panic!("{}");
+LL |         panic!("{}");
    |                ^^^^
    |
    = note: `-D clippy::panic-params` implied by `-D warnings`
 
 error: you probably are missing some parameter in your format string
-  --> $DIR/panic_unimplemented.rs:16:16
+  --> $DIR/panic_unimplemented.rs:7:16
    |
-16 |         panic!("{:?}");
+LL |         panic!("{:?}");
    |                ^^^^^^
 
 error: you probably are missing some parameter in your format string
-  --> $DIR/panic_unimplemented.rs:18:23
+  --> $DIR/panic_unimplemented.rs:9:23
    |
-18 |         assert!(true, "here be missing values: {}");
+LL |         assert!(true, "here be missing values: {}");
    |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: you probably are missing some parameter in your format string
-  --> $DIR/panic_unimplemented.rs:21:12
+  --> $DIR/panic_unimplemented.rs:12:12
    |
-21 |     panic!("{{{this}}}");
+LL |     panic!("{{{this}}}");
    |            ^^^^^^^^^^^^
 
 error: `unimplemented` should not be present in production code
-  --> $DIR/panic_unimplemented.rs:64:5
+  --> $DIR/panic_unimplemented.rs:55:5
    |
-64 |     unimplemented!();
+LL |     unimplemented!();
    |     ^^^^^^^^^^^^^^^^^
    |
    = note: `-D clippy::unimplemented` implied by `-D warnings`