13 lines
395 B
Plaintext
13 lines
395 B
Plaintext
|
error: format argument must be a string literal
|
||
|
--> $DIR/expansion-info-reset.rs:15:18
|
||
|
|
|
||
|
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
|
||
|
|