]> git.lizzy.rs Git - rust.git/blob - tests/ui/panic.stderr
Auto merge of #5522 - CrazyRoka:match_vec_item, r=phansch
[rust.git] / tests / ui / panic.stderr
1 error: you probably are missing some parameter in your format string
2   --> $DIR/panic.rs:5: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.rs:7:16
11    |
12 LL |         panic!("{:?}");
13    |                ^^^^^^
14
15 error: you probably are missing some parameter in your format string
16   --> $DIR/panic.rs:9: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.rs:12:12
23    |
24 LL |     panic!("{{{this}}}");
25    |            ^^^^^^^^^^^^
26
27 error: aborting due to 4 previous errors
28