Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#[repr(C, u8)] //~ ERROR conflicting representation hints
//~^ WARN this was previously accepted
enum Foo {
A,
B,
}
#[repr(C)] //~ ERROR conflicting representation hints
#[repr(u8)]
enum Bar {
fn main() {}