]> git.lizzy.rs Git - rust.git/blob - tests/ui/derives/derive-deadlock.rs
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / tests / ui / derives / derive-deadlock.rs
1 use std as derive;
2
3 #[derive(Default)] //~ ERROR cannot determine resolution for the attribute macro `derive`
4 struct S;
5
6 fn main() {}