]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-repr128.rs
Rollup merge of #94068 - eholk:drop-track-field-assign, r=tmandry
[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() {}