]> git.lizzy.rs Git - rust.git/blob - src/test/ui/malformed/issue-69341-malformed-derive-inert.rs
Auto merge of #103903 - matthiaskrgr:rollup-r5xcvrp, r=matthiaskrgr
[rust.git] / src / test / ui / malformed / issue-69341-malformed-derive-inert.rs
1 fn main() {}
2
3 struct CLI {
4     #[derive(parse())] //~ ERROR expected non-macro attribute, found attribute macro
5     path: (),
6 }