]> git.lizzy.rs Git - rust.git/blob - tests/ui/feature-gates/feature-gate-repr128.rs
Rollup merge of #106605 - notriddle:notriddle/outdated-rustbook, r=GuillaumeGomez
[rust.git] / tests / 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() {}