about summary refs log tree commit diff
path: root/tests/ui/consts/issue-37222.rs
blob: a279e786bd7efd76a727a81d747a86b79ac7a398 (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));
}