rust/src/test/ui/hygiene/expansion-info-reset.stderr

13 lines
395 B
Plaintext
Raw Normal View History

2018-08-24 02:26:50 +03:00
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