]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-eval/union-ub.rs
86b3bdaa6b79ec82d41cb0e9a8b9208501dd6b5b
[rust.git] / src / test / ui / consts / const-eval / union-ub.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 union DummyUnion {
12     u8: u8,
13     bool: bool,
14 }
15
16 #[repr(C)]
17 #[derive(Copy, Clone)]
18 enum Enum {
19     A,
20     B,
21     C,
22 }
23
24 #[derive(Copy, Clone)]
25 union Foo {
26     a: bool,
27     b: Enum,
28 }
29
30 union Bar {
31     foo: Foo,
32     u8: u8,
33 }
34
35 // the value is not valid for bools
36 const BAD_BOOL: bool = unsafe { DummyUnion { u8: 42 }.bool};
37 //~^ ERROR this constant likely exhibits undefined behavior
38
39 // The value is not valid for any union variant, but that's fine
40 // unions are just a convenient way to transmute bits around
41 const BAD_UNION: Foo = unsafe { Bar { u8: 42 }.foo };
42
43
44 fn main() {}