summaryrefslogtreecommitdiffstats
path: root/src/test/ui/feature-gates/feature-gate-repr128.rs
blob: 0290874dd27f865987e5acc2a3a27885da9736f7 (plain)
1
2
3
4
5
6
#[repr(u128)]
enum A { //~ ERROR repr with 128-bit type is unstable
    A(u64)
}

fn main() {}