]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/derive-deadlock.rs
Auto merge of #103894 - mati865:gnullvm-libunwind-changes, r=thomcc
[rust.git] / src / test / 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() {}