mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
23 lines
619 B
Plaintext
23 lines
619 B
Plaintext
error: you probably are missing some parameter in your format string
|
|
--> $DIR/panic.rs:8:16
|
|
|
|
|
8 | panic!("{}");
|
|
| ^^^^
|
|
|
|
|
= note: `-D panic-params` implied by `-D warnings`
|
|
|
|
error: you probably are missing some parameter in your format string
|
|
--> $DIR/panic.rs:10:16
|
|
|
|
|
10 | panic!("{:?}");
|
|
| ^^^^^^
|
|
|
|
error: you probably are missing some parameter in your format string
|
|
--> $DIR/panic.rs:12:23
|
|
|
|
|
12 | assert!(true, "here be missing values: {}");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|