mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
202 B
Rust
12 lines
202 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
|
|
enum E { V0, V16(u16) }
|
|
static C: (E, u16, u16) = (E::V0, 0x600D, 0xBAD);
|
|
|
|
pub fn main() {
|
|
let (_, n, _) = C;
|
|
assert!(n != 0xBAD);
|
|
assert_eq!(n, 0x600D);
|
|
}
|