2018-08-24 02:26:50 +03:00
|
|
|
error: format argument must be a string literal
|
2019-07-14 11:34:13 +01:00
|
|
|
--> $DIR/expansion-info-reset.rs:2:18
|
2018-08-24 02:26:50 +03:00
|
|
|
|
|
|
|
|
LL | format_args!({ #[derive(Clone)] struct S; });
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2018-08-24 02:26:50 +03:00
|
|
|
help: you might be missing a string literal to format with
|
|
|
|
|
|
|
|
|
LL | format_args!("{}", { #[derive(Clone)] struct S; });
|
2021-06-21 19:07:19 -07:00
|
|
|
| +++++
|
2018-08-24 02:26:50 +03:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-24 02:26:50 +03:00
|
|
|
|