blob: 8ea5f6b7a278a4b0c0397ece48e505318586fa88 [file] [log] [blame]
// run-pass
#![allow(dead_code)]
#[derive(Debug, PartialEq)]
enum Bar {
A(i64),
B(i32),
C,
}
#[derive(Debug, PartialEq)]
struct Foo(Bar, u8);
static FOO: [Foo; 2] = [Foo(Bar::C, 0), Foo(Bar::C, 0xFF)];
fn main() {
assert_eq!(&FOO[1], &Foo(Bar::C, 0xFF));
}