]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-repr128.rs
Auto merge of #92214 - ehuss:submodule-bg-exit, r=Mark-Simulacrum
[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() {}