2021-03-31 04:33:45 -05:00
error[E0080]: it is undefined behavior to use this value
2022-09-21 06:05:20 -05:00
--> $DIR/union-ub.rs:32:1
2021-03-31 04:33:45 -05:00
|
LL | const BAD_BOOL: bool = unsafe { DummyUnion { u8: 42 }.bool};
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered 0x2a, but expected a boolean
2021-03-31 04:33:45 -05:00
|
= 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.
= note: the raw bytes of the constant (size: 1, align: 1) {
2a │ *
}
2022-08-01 18:05:20 -05:00
error[E0080]: evaluation of constant value failed
2022-09-21 06:05:20 -05:00
--> $DIR/union-ub.rs:34:36
2021-03-31 04:33:45 -05:00
|
LL | const UNINIT_BOOL: bool = unsafe { DummyUnion { unit: () }.bool};
2022-08-01 18:05:20 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ using uninitialized data, but this operation requires initialized memory
2021-03-31 04:33:45 -05:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0080`.