mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
14 lines
308 B
Plaintext
14 lines
308 B
Plaintext
error: format argument must be a string literal
|
|
--> $DIR/unreachable-arg.rs:15:18
|
|
|
|
|
LL | unreachable!(a);
|
|
| ^
|
|
|
|
|
help: you might be missing a string literal to format with
|
|
|
|
|
LL | unreachable!("{}", a);
|
|
| +++++
|
|
|
|
error: aborting due to previous error
|
|
|