1 2 3 4 5 6 7 8 9 10 11 12 13
#[repr] //~ ERROR malformed `repr` attribute struct _A {} #[repr = "B"] //~ ERROR malformed `repr` attribute struct _B {} #[repr = "C"] //~ ERROR malformed `repr` attribute struct _C {} #[repr(C)] struct _D {} fn main() {}