rust/tests/ui/malformed/issue-69341-malformed-derive-inert.rs
2023-01-11 09:32:08 +00:00

7 lines
128 B
Rust

fn main() {}
struct CLI {
#[derive(parse())] //~ ERROR expected non-macro attribute, found attribute macro
path: (),
}