rust/tests/ui/panic.stderr

23 lines
619 B
Text
Raw Normal View History

2017-07-28 09:08:09 +02:00
error: you probably are missing some parameter in your format string
2017-08-01 17:54:21 +02:00
--> $DIR/panic.rs:8:16
2017-07-28 09:08:09 +02:00
|
8 | panic!("{}");
| ^^^^
|
= note: `-D panic-params` implied by `-D warnings`
error: you probably are missing some parameter in your format string
2017-08-01 17:54:21 +02:00
--> $DIR/panic.rs:10:16
2017-07-28 09:08:09 +02:00
|
10 | panic!("{:?}");
| ^^^^^^
error: you probably are missing some parameter in your format string
2017-08-01 17:54:21 +02:00
--> $DIR/panic.rs:12:23
2017-07-28 09:08:09 +02:00
|
12 | assert!(true, "here be missing values: {}");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-01-16 17:06:27 +01:00
error: aborting due to 3 previous errors