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