2019-05-21 19:47:23 -05:00
|
|
|
#[repr] //~ ERROR malformed `repr` attribute
|
2018-06-06 14:31:43 -05:00
|
|
|
struct _A {}
|
|
|
|
|
2019-05-21 19:47:23 -05:00
|
|
|
#[repr = "B"] //~ ERROR malformed `repr` attribute
|
2018-06-06 14:31:43 -05:00
|
|
|
struct _B {}
|
|
|
|
|
2019-05-21 19:47:23 -05:00
|
|
|
#[repr = "C"] //~ ERROR malformed `repr` attribute
|
2018-06-06 14:31:43 -05:00
|
|
|
struct _C {}
|
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
struct _D {}
|
|
|
|
|
|
|
|
fn main() {}
|