summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/panic.stderr
blob: 1f8ff8ccf55750577675303eb2bcec693119bdda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
error: you probably are missing some parameter in your format string
  --> $DIR/panic.rs:5:16
   |
LL |         panic!("{}");
   |                ^^^^
   |
   = note: `-D clippy::panic-params` implied by `-D warnings`

error: you probably are missing some parameter in your format string
  --> $DIR/panic.rs:7:16
   |
LL |         panic!("{:?}");
   |                ^^^^^^

error: you probably are missing some parameter in your format string
  --> $DIR/panic.rs:9:23
   |
LL |         assert!(true, "here be missing values: {}");
   |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: you probably are missing some parameter in your format string
  --> $DIR/panic.rs:12:12
   |
LL |     panic!("{{{this}}}");
   |            ^^^^^^^^^^^^

error: aborting due to 4 previous errors