summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0370.rs
blob: 32a66b63bed21e0e3b6e2b912758e1351218389a (plain)
1
2
3
4
5
6
7
8
9
10
#![allow(dead_code)]

#[deny(overflowing_literals)]
#[repr(i64)]
enum Foo {
    X = 0x7fffffffffffffff,
    Y, //~ ERROR E0370
}

fn main() {}