2021-11-08 00:55:00 -05:00
|
|
|
error: format argument must be a string literal
|
|
|
|
--> $DIR/const_panic_stability.rs:14:12
|
|
|
|
|
|
|
|
|
LL | panic!({ "foo" });
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: you might be missing a string literal to format with
|
|
|
|
|
|
|
|
|
LL | panic!("{}", { "foo" });
|
|
|
|
| +++++
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2021-11-08 00:55:00 -05:00
|
|
|
|