mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 07:26:06 +00:00
16 lines
224 B
Rust
16 lines
224 B
Rust
// run-pass
|
|
|
|
#[derive(Copy, Clone)]
|
|
enum Foo {
|
|
Bar = 0xDEADBEE
|
|
}
|
|
|
|
static X: Foo = Foo::Bar;
|
|
|
|
pub fn main() {
|
|
assert_eq!((X as usize), 0xDEADBEE);
|
|
assert_eq!((Y as usize), 0xDEADBEE);
|
|
}
|
|
|
|
static Y: Foo = Foo::Bar;
|