about summary refs log tree commit diff
path: root/src/test/ui/consts/const-eval/shift_overflow.rs
blob: f7d0f6bd96144c9594295edc65cfe0a7b4c71ceb (plain)
1
2
3
4
5
6
7
8
9
enum Foo {
    // test that we detect overflows for non-u32 discriminants
    X = 1 << ((u32::max_value() as u64) + 1), //~ ERROR E0080
    Y = 42,
}


fn main() {
}