We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This produces the warning:
#[repr(C,u8)] enum Foo { A, B }
This doesn't:
#[repr(C)] #[repr(u8)] enum Foo { A, B }