]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-repr128.rs
Merge commit 'e228f0c16ea8c34794a6285bf57aab627c26b147' into libgccjit-codegen
[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() {}