2022-01-23 07:57:49 -06:00
|
|
|
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);
|
|
|
|
| +++++
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-01-23 07:57:49 -06:00
|
|
|
|