rust/tests/ui/malformed/issue-69341-malformed-derive-inert.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
128 B
Rust
Raw Normal View History

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