mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
131 B
Rust
14 lines
131 B
Rust
//@ build-pass
|
|
#![allow(dead_code)]
|
|
#[repr(u64)]
|
|
enum A {
|
|
A = 0u64,
|
|
B = !0u64,
|
|
}
|
|
|
|
fn cmp() -> A {
|
|
A::B
|
|
}
|
|
|
|
fn main() {}
|