rust/tests/ui/consts/const-eval/transmute-const.32bit.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
720 B
Plaintext
Raw Normal View History

2021-03-31 04:33:45 -05:00
error[E0080]: it is undefined behavior to use this value
--> $DIR/transmute-const.rs:4:1
|
LL | static FOO: bool = unsafe { mem::transmute(3u8) };
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^ constructing invalid value: encountered 0x03, 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) {
03 │ .
}
2023-11-21 13:26:31 -06:00
error: aborting due to 1 previous error
2021-03-31 04:33:45 -05:00
For more information about this error, try `rustc --explain E0080`.