mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
13 lines
215 B
Rust
13 lines
215 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
|
|
enum E { V0, V16(u16) }
|
|
struct S(E, u16, u16);
|
|
static C: S = S(E::V0, 0x600D, 0xBAD);
|
|
|
|
pub fn main() {
|
|
let S(_, n, _) = C;
|
|
assert!(n != 0xBAD);
|
|
assert_eq!(n, 0x600D);
|
|
}
|