rust/src/test/ui/repr.rs
2019-01-13 14:17:19 +03:00

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