mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
28 lines
792 B
Text
28 lines
792 B
Text
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
|
|
|