37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
error: you probably are missing some parameter in your format string
|
|
--> $DIR/panic_unimplemented.rs:14:16
|
|
|
|
|
14 | panic!("{}");
|
|
| ^^^^
|
|
|
|
|
= note: `-D clippy::panic-params` implied by `-D warnings`
|
|
|
|
error: you probably are missing some parameter in your format string
|
|
--> $DIR/panic_unimplemented.rs:16:16
|
|
|
|
|
16 | panic!("{:?}");
|
|
| ^^^^^^
|
|
|
|
error: you probably are missing some parameter in your format string
|
|
--> $DIR/panic_unimplemented.rs:18:23
|
|
|
|
|
18 | assert!(true, "here be missing values: {}");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: you probably are missing some parameter in your format string
|
|
--> $DIR/panic_unimplemented.rs:21:12
|
|
|
|
|
21 | panic!("{{{this}}}");
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: `unimplemented` should not be present in production code
|
|
--> $DIR/panic_unimplemented.rs:64:5
|
|
|
|
|
64 | unimplemented!();
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::unimplemented` implied by `-D warnings`
|
|
|
|
error: aborting due to 5 previous errors
|
|
|