rust/tests/ui/panic_unimplemented.stderr

37 lines
1 KiB
Text
Raw Normal View History

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