]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/invalid-union.32bit.stderr
Rollup merge of #106873 - BoxyUwU:ty_const_formatting, r=compiler-errors
[rust.git] / tests / ui / consts / invalid-union.32bit.stderr
1 error[E0080]: it is undefined behavior to use this value
2   --> $DIR/invalid-union.rs:41:1
3    |
4 LL | fn main() {
5    | ^^^^^^^^^ constructing invalid value at .<deref>.y.<enum-variant(B)>.0: encountered `UnsafeCell` in a `const`
6    |
7    = note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
8    = note: the raw bytes of the constant (size: 4, align: 4) {
9                ╾─alloc7──╼                                     │ ╾──╼
10            }
11
12 note: erroneous constant used
13   --> $DIR/invalid-union.rs:43:25
14    |
15 LL |     let _: &'static _ = &C;
16    |                         ^^
17
18 note: erroneous constant used
19   --> $DIR/invalid-union.rs:43:25
20    |
21 LL |     let _: &'static _ = &C;
22    |                         ^^
23
24 error: aborting due to previous error
25
26 For more information about this error, try `rustc --explain E0080`.