blob: 9dd954b16cdec008d9b0c95c38b2aed9a5f27461 [file] [log] [blame]
error: format argument must be a string literal
--> $DIR/expansion-info-reset.rs:5: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