mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
304 B
Rust
15 lines
304 B
Rust
// Check that niche selection prefers zero.
|
|
// See https://github.com/rust-lang/rust/pull/87794
|
|
// run-pass
|
|
#[repr(u8)]
|
|
pub enum Size {
|
|
One = 1,
|
|
Two = 2,
|
|
Three = 3,
|
|
}
|
|
|
|
fn main() {
|
|
// check that `None` is zero
|
|
assert_eq!(0, unsafe { std::mem::transmute::<Option<Size>, u8>(None) });
|
|
}
|