12 lines
631 B
Plaintext
12 lines
631 B
Plaintext
|
error[E0080]: this static likely exhibits undefined behavior
|
||
|
--> $DIR/transmute-const.rs:15:1
|
||
|
|
|
||
|
LL | static FOO: bool = unsafe { mem::transmute(3u8) };
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type validation failed: encountered 3, but expected something in the range 0..=1
|
||
|
|
|
||
|
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rust compiler repository if you believe it should not be considered undefined behavior
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0080`.
|