blob: ea3264b61b356fd51a89529c784809c27b4f44b1 [file] [log] [blame]
enum Enum {
X = (1 << 500), //~ ERROR E0080
//~| attempt to shift left by `500_i32`, which would overflow
Y = (1 / 0) //~ ERROR E0080
}
fn main() {
}