``` rust fn main() { } #[repr(C)] #[derive(Copy)] enum X { A = -1, B, } ``` ``` test5.rs:7:5: 7:6 error: Discriminant overflowed! test5.rs:7 B, ^ ```