]> git.lizzy.rs Git - rust.git/blob - tests/ui/panic_unimplemented.stderr
Adapt the *.stderr files of the ui-tests to the tool_lints
[rust.git] / tests / ui / panic_unimplemented.stderr
1 error: you probably are missing some parameter in your format string
2  --> $DIR/panic_unimplemented.rs:8:16
3   |
4 8 |         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:10:16
11    |
12 10 |         panic!("{:?}");
13    |                ^^^^^^
14
15 error: you probably are missing some parameter in your format string
16   --> $DIR/panic_unimplemented.rs:12:23
17    |
18 12 |         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:15:12
23    |
24 15 |     panic!("{{{this}}}");
25    |            ^^^^^^^^^^^^
26
27 error: `unimplemented` should not be present in production code
28   --> $DIR/panic_unimplemented.rs:58:5
29    |
30 58 |     unimplemented!();
31    |     ^^^^^^^^^^^^^^^^^
32    |
33    = note: `-D clippy::unimplemented` implied by `-D warnings`
34
35 error: aborting due to 5 previous errors
36