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