]> git.lizzy.rs Git - rust.git/blob - tests/ui/panic_unimplemented.stderr
Merge branch 'master' into rustfmt_tests
[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 14 |         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 16 |         panic!("{:?}");
13    |                ^^^^^^
14
15 error: you probably are missing some parameter in your format string
16   --> $DIR/panic_unimplemented.rs:18:23
17    |
18 18 |         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 21 |     panic!("{{{this}}}");
25    |            ^^^^^^^^^^^^
26
27 error: `unimplemented` should not be present in production code
28   --> $DIR/panic_unimplemented.rs:64:5
29    |
30 64 |     unimplemented!();
31    |     ^^^^^^^^^^^^^^^^^
32    |
33    = note: `-D clippy::unimplemented` implied by `-D warnings`
34
35 error: aborting due to 5 previous errors
36