- https://github.com/rust-lang/rfcs/pull/3894 - https://github.com/rust-lang/rust/issues/156628 ```rust #[repr(u8)] enum Color { Red = 0, Green = 1, _ = .., // All other discriminants in `u8` are assigned to unnamed variants } ```