2019-12-31 14:25:16 -06:00
|
|
|
#[repr(C, u8)] //~ ERROR conflicting representation hints
|
2020-01-27 17:27:57 -06:00
|
|
|
//~^ WARN this was previously accepted
|
2018-01-01 14:42:12 -06:00
|
|
|
enum Foo {
|
|
|
|
A,
|
|
|
|
B,
|
|
|
|
}
|
|
|
|
|
2019-12-31 14:25:16 -06:00
|
|
|
#[repr(C)] //~ ERROR conflicting representation hints
|
2020-01-27 17:27:57 -06:00
|
|
|
//~^ WARN this was previously accepted
|
2018-01-01 14:42:12 -06:00
|
|
|
#[repr(u8)]
|
|
|
|
enum Bar {
|
|
|
|
A,
|
|
|
|
B,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|