]> git.lizzy.rs Git - rust.git/blob - src/test/ui/malformed/issue-69341-malformed-derive-inert.rs
Rollup merge of #89235 - yaahc:junit-formatting, r=kennytm
[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 }