]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/panic_unimplemented.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / panic_unimplemented.stderr
index 75032c1170ec2d6c73dbd5c0945f879205491355..7bc83a287c187e2c97a6a5b42c6d129a5106680f 100644 (file)
@@ -1,33 +1,33 @@
 error: you probably are missing some parameter in your format string
-  --> $DIR/panic_unimplemented.rs:18:16
+  --> $DIR/panic_unimplemented.rs:14:16
    |
-18 |         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:20:16
+  --> $DIR/panic_unimplemented.rs:16:16
    |
-20 |         panic!("{:?}");
+LL |         panic!("{:?}");
    |                ^^^^^^
 
 error: you probably are missing some parameter in your format string
-  --> $DIR/panic_unimplemented.rs:22:23
+  --> $DIR/panic_unimplemented.rs:18:23
    |
-22 |         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:25:12
+  --> $DIR/panic_unimplemented.rs:21:12
    |
-25 |     panic!("{{{this}}}");
+LL |     panic!("{{{this}}}");
    |            ^^^^^^^^^^^^
 
 error: `unimplemented` should not be present in production code
-  --> $DIR/panic_unimplemented.rs:68:5
+  --> $DIR/panic_unimplemented.rs:64:5
    |
-68 |     unimplemented!();
+LL |     unimplemented!();
    |     ^^^^^^^^^^^^^^^^^
    |
    = note: `-D clippy::unimplemented` implied by `-D warnings`