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

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

13 lines
231 B
Rust
Raw Normal View History

// run-pass
#![allow(dead_code)]
enum E { V0, V16(u16) }
struct S { a: E, b: u16, c: u16 }
static C: S = S { a: E::V0, b: 0x600D, c: 0xBAD };
pub fn main() {
let n = C.b;
2013-03-28 20:39:09 -05:00
assert!(n != 0xBAD);
assert_eq!(n, 0x600D);
}