repr128

The tracking issue for this feature is: #35118


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

#![feature(repr128)]

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