]> git.lizzy.rs Git - rust.git/blob - src/test/ui/malformed/issue-69341-malformed-derive-inert.rs
Rollup merge of #101014 - isikkema:fix-zmeta-stats-file-encoder-no-read-perms, r...
[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 }