rust/src/test/ui/error-codes/E0080.rs
2018-12-25 21:08:33 -07:00

8 lines
131 B
Rust

enum Enum {
X = (1 << 500), //~ ERROR E0080
//~| shift left with overflow
Y = (1 / 0) //~ ERROR E0080
}
fn main() {
}