]> git.lizzy.rs Git - rust.git/blob - tests/ui/panic_unimplemented.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / panic_unimplemented.stderr
1 error: you probably are missing some parameter in your format string
2   --> $DIR/panic_unimplemented.rs:14:16
3    |
4 LL |         panic!("{}");
5    |                ^^^^
6    |
7    = note: `-D clippy::panic-params` implied by `-D warnings`
8
9 error: you probably are missing some parameter in your format string
10   --> $DIR/panic_unimplemented.rs:16:16
11    |
12 LL |         panic!("{:?}");
13    |                ^^^^^^
14
15 error: you probably are missing some parameter in your format string
16   --> $DIR/panic_unimplemented.rs:18:23
17    |
18 LL |         assert!(true, "here be missing values: {}");
19    |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
20
21 error: you probably are missing some parameter in your format string
22   --> $DIR/panic_unimplemented.rs:21:12
23    |
24 LL |     panic!("{{{this}}}");
25    |            ^^^^^^^^^^^^
26
27 error: `unimplemented` should not be present in production code
28   --> $DIR/panic_unimplemented.rs:64:5
29    |
30 LL |     unimplemented!();
31    |     ^^^^^^^^^^^^^^^^^
32    |
33    = note: `-D clippy::unimplemented` implied by `-D warnings`
34
35 error: aborting due to 5 previous errors
36