]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-26646.rs
Rollup merge of #107152 - GuillaumeGomez:migrate-to-css-var, r=notriddle
[rust.git] / tests / ui / issues / issue-26646.rs
1 // check-pass
2 #![deny(unused_attributes)]
3
4 #[repr(C)]
5 #[repr(packed)]
6 pub struct Foo;
7
8 #[repr(packed)]
9 #[repr(C)]
10 pub struct Bar;
11
12 fn main() { }