blob: fa776070789cc2927e64874d35911f09b5981250 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|