blob: 9d844745f4299e336d9a84b02e7019f7d03ce737 [file] [log] [blame]
#[repr]
//~^ ERROR attribute must be of the form
struct _A {}
#[repr = "B"]
//~^ ERROR attribute must be of the form
struct _B {}
#[repr = "C"]
//~^ ERROR attribute must be of the form
struct _C {}
#[repr(C)]
struct _D {}
fn main() {}