Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 290 Bytes

File metadata and controls

18 lines (12 loc) · 290 Bytes

repr128

The tracking issue for this feature is: #56071


The repr128 feature adds support for #[repr(u128)] on enums.

#![feature(repr128)]

#[repr(u128)]
enum Foo {
    Bar(u64),
}