blob: fa776070789cc2927e64874d35911f09b5981250 [file] [log] [blame]
error: format argument must be a string literal
--> $DIR/unreachable-arg.rs:14:18
|
LL | unreachable!(a);
| ^
|
help: you might be missing a string literal to format with
|
LL | unreachable!("{}", a);
| +++++
error: aborting due to 1 previous error