]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-repr128.rs
Auto merge of #94286 - matthiaskrgr:rollup-6i1spjg, r=matthiaskrgr
[rust.git] / src / test / ui / feature-gates / feature-gate-repr128.rs
1 #[repr(u128)]
2 enum A { //~ ERROR repr with 128-bit type is unstable
3     A(u64)
4 }
5
6 fn main() {}