blob: b1789b1a91fc28d81b5179b6c01253a79ceed445 [file] [log] [blame] [edit]
//@ check-pass
#![deny(unused_attributes)]
#[repr(C)]
#[repr(packed)]
pub struct Foo;
#[repr(packed)]
#[repr(C)]
pub struct Bar;
fn main() { }