2018-08-23 18:26:50 -05:00
|
|
|
error: format argument must be a string literal
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/expansion-info-reset.rs:5:18
|
2018-08-23 18:26:50 -05:00
|
|
|
|
|
|
|
|
LL | format_args!({ #[derive(Clone)] struct S; });
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
help: you might be missing a string literal to format with
|
|
|
|
|
|
|
|
|
LL | format_args!("{}", { #[derive(Clone)] struct S; });
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|