blob: 97da984d4afd0d63e3619805d78d1a9656b1d537 [file] [log] [blame]
// check-pass
#[repr(C,u8)] //~ WARNING conflicting representation hints
enum Foo {
A,
B,
}
#[repr(C)] //~ WARNING conflicting representation hints
#[repr(u8)]
enum Bar {
A,
B,
}
fn main() {}