]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/derive-deadlock.rs
Rollup merge of #103489 - WaffleLapkin:byte_offset_from_you, r=scottmcm
[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() {}