17 lines
239 B
Rust
17 lines
239 B
Rust
#[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() {}
|