This produces the warning: ```rust #[repr(C,u8)] enum Foo { A, B } ``` This doesn't: ```rust #[repr(C)] #[repr(u8)] enum Foo { A, B } ```