summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0080.rs
blob: ac0e7737f43fcdb20d16fb8ec87a7b41e731b673 (plain)
1
2
3
4
5
6
7
8
enum Enum {
    X = (1 << 500), //~ ERROR E0080
    //~| shift left with overflow
    Y = (1 / 0) //~ ERROR E0080
}

fn main() {
}