rust/tests/ui/macros/derive-in-eager-expansion-h...

15 lines
232 B
Rust

// Regression test for the issue #44692
macro_rules! hang { () => {
{ //~ ERROR format argument must be a string literal
#[derive(Clone)]
struct S;
""
}
}}
fn main() {
format_args!(hang!());
}