Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
feature-gates
/
feature-gate-repr128.rs
blob: 0290874dd27f865987e5acc2a3a27885da9736f7 [
file
] [
log
] [
blame
] [
edit
]
#[
repr
(
u128
)]
enum
A
{
//~ ERROR repr with 128-bit type is unstable
A
(
u64
)
}
fn
main
()
{}