rust/src/test/ui/consts/issue-63952.64bit.stderr

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

21 lines
933 B
Plaintext
Raw Normal View History

2020-02-15 17:54:51 +00:00
error[E0080]: it is undefined behavior to use this value
--> $DIR/issue-63952.rs:17:1
2020-02-15 17:54:51 +00:00
|
LL | / const SLICE_WAY_TOO_LONG: &[u8] = unsafe {
LL | | SliceTransmute {
LL | | repr: SliceRepr {
LL | | ptr: &42,
... |
LL | | .slice
LL | | };
| |__^ constructing invalid value: encountered invalid reference metadata: slice is bigger than largest supported object
2020-02-15 17:54:51 +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.
= note: the raw bytes of the constant (size: 16, align: 8) {
2021-07-12 22:21:35 +00:00
╾───────alloc4────────╼ ff ff ff ff ff ff ff ff │ ╾──────╼........
}
2020-02-15 17:54:51 +00:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0080`.