summaryrefslogtreecommitdiffstats
path: root/src/test/ui/malformed/issue-69341-malformed-derive-inert.rs
blob: fc4c3f4e64bf9d401e86a7903e23a71b71954fa6 (plain)
1
2
3
4
5
6
fn main() {}

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