rust/src/test/ui/repr.rs

17 lines
239 B
Rust
Raw Normal View History

#[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() {}