2018-08-31 08:40:14 +00:00
error[E0080]: it is undefined behavior to use this value
2021-03-31 08:09:16 +00:00
--> $DIR/transmute-const.rs:4:1
2018-08-20 18:51:48 +00:00
|
LL | static FOO: bool = unsafe { mem::transmute(3u8) };
2022-02-13 15:27:59 +00:00
| ^^^^^^^^^^^^^^^^ constructing invalid value: encountered 0x03, but expected a boolean
2018-08-20 18:51:48 +00:00
|
2019-09-01 17:09:59 +00: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.
2021-02-01 12:02:31 +00:00
= note: the raw bytes of the constant (size: 1, align: 1) {
03 │ .
}
2018-08-20 18:51:48 +00:00
2023-11-21 15:44:16 +00:00
error: aborting due to 1 previous error
2018-08-20 18:51:48 +00:00
For more information about this error, try `rustc --explain E0080`.