]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/const-eval/transmute-const.32bit.stderr
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / ui / consts / const-eval / transmute-const.32bit.stderr
1 error[E0080]: it is undefined behavior to use this value
2   --> $DIR/transmute-const.rs:4:1
3    |
4 LL | static FOO: bool = unsafe { mem::transmute(3u8) };
5    | ^^^^^^^^^^^^^^^^ constructing invalid value: encountered 0x03, but expected a boolean
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: 1, align: 1) {
9                03                                              │ .
10            }
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0080`.