]> git.lizzy.rs Git - rust.git/blob - tests/ui/derives/derive-deadlock.rs
Rollup merge of #106570 - Xaeroxe:div-duration-tests, r=JohnTitor
[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() {}