summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/issue-37222.rs
blob: 8ea5f6b7a278a4b0c0397ece48e505318586fa88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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));
}