2017-07-28 07:08:09 +00:00
|
|
|
error: you probably are missing some parameter in your format string
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/panic_unimplemented.rs:18:16
|
|
|
|
|
|
|
|
|
18 | panic!("{}");
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::panic-params` implied by `-D warnings`
|
2017-07-28 07:08:09 +00:00
|
|
|
|
|
|
|
error: you probably are missing some parameter in your format string
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/panic_unimplemented.rs:20:16
|
2017-07-28 07:08:09 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
20 | panic!("{:?}");
|
2017-07-28 07:08:09 +00:00
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
error: you probably are missing some parameter in your format string
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/panic_unimplemented.rs:22:23
|
2017-07-28 07:08:09 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
22 | assert!(true, "here be missing values: {}");
|
2017-07-28 07:08:09 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-05-06 15:26:47 +00:00
|
|
|
error: you probably are missing some parameter in your format string
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/panic_unimplemented.rs:25:12
|
2018-05-06 15:26:47 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
25 | panic!("{{{this}}}");
|
2018-05-06 15:26:47 +00:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
2018-05-23 14:43:05 +00:00
|
|
|
error: `unimplemented` should not be present in production code
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/panic_unimplemented.rs:68:5
|
2018-05-23 14:43:05 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
68 | unimplemented!();
|
2018-05-23 14:43:05 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::unimplemented` implied by `-D warnings`
|
2018-05-23 14:43:05 +00:00
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|