summary refs log tree commit diff
path: root/src/test/ui/consts/union_constant.rs
blob: 6b6042194ba209e84f13ba377f55ffc8ddb54477 (plain)
1
2
3
4
5
6
7
8
9
10
// compile-pass

union Uninit {
    _never_use: *const u8,
    uninit: (),
}

const UNINIT: Uninit = Uninit { uninit: () };

fn main() {}