]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-eval/union-ice.rs
0e4f1e09171de97213808d5929a62416d84a205e
[rust.git] / src / test / ui / consts / const-eval / union-ice.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![feature(const_fn)]
12
13 type Field1 = i32;
14 type Field3 = i64;
15
16 union DummyUnion {
17     field1: Field1,
18     field3: Field3,
19 }
20
21 const UNION: DummyUnion = DummyUnion { field1: 1065353216 };
22
23 const FIELD3: Field3 = unsafe { UNION.field3 }; //~ ERROR will cause an error
24
25 const FIELD_PATH: Struct = Struct { //~ ERROR it is undefined behavior to use this value
26     a: 42,
27     b: unsafe { UNION.field3 },
28 };
29
30 struct Struct {
31     a: u8,
32     b: Field3,
33 }
34
35 const FIELD_PATH2: Struct2 = Struct2 { //~ ERROR it is undefined behavior to use this value
36     b: [
37         21,
38         unsafe { UNION.field3 },
39         23,
40         24,
41     ],
42     a: 42,
43 };
44
45 struct Struct2 {
46     b: [Field3; 4],
47     a: u8,
48 }
49
50 fn main() {
51 }