]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/derive-multiple-with-packed.rs
Auto merge of #103894 - mati865:gnullvm-libunwind-changes, r=thomcc
[rust.git] / src / test / ui / derives / derive-multiple-with-packed.rs
1 // check-pass
2
3 #[derive(Clone, Copy)]
4 #[derive(Debug)] // OK, even if `Copy` is in the different `#[derive]`
5 #[repr(packed)]
6 struct CacheRecordHeader {
7     field: u64,
8 }
9
10 fn main() {}