rust/tests/ui/consts/const-enum-tuplestruct.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
230 B
Rust
Raw Normal View History

// run-pass
#![allow(dead_code)]
enum E { V16(u16), V32(u32) }
struct S(E, u16, u16);
static C: S = S(E::V16(0xDEAD), 0x600D, 0xBAD);
pub fn main() {
let S(_, n, _) = C;
2013-03-29 01:39:09 +00:00
assert!(n != 0xBAD);
assert_eq!(n, 0x600D);
}