summary refs log tree commit diff
path: root/tests/ui/consts/const-struct-offsets.rs
blob: ee97fe3cab94152798005ddc3afc0e811323c1b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//@ run-pass
#![allow(dead_code)]
//@ pretty-expanded FIXME #23616
#![allow(non_upper_case_globals)]

enum Foo {
    IntVal(i32),
    Int64Val(i64)
}

struct Bar {
    i: i32,
    v: Foo
}

static bar: Bar = Bar { i: 0, v: Foo::IntVal(0) };

pub fn main() {}