rust/tests/ui/consts/issue-63952.64bit.stderr

15 lines
795 B
Plaintext

error[E0080]: it is undefined behavior to use this value
--> $DIR/issue-63952.rs:17:1
|
LL | const SLICE_WAY_TOO_LONG: &[u8] = unsafe {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered invalid reference metadata: slice is bigger than largest supported object
|
= 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: 16, align: 8) {
╾ALLOC0<imm>╼ ff ff ff ff ff ff ff ff │ ╾──────╼........
}
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0080`.