rust/tests/ui/consts/const-eval/ub-uninhabit.stderr

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

27 lines
1.3 KiB
Plaintext
Raw Normal View History

error[E0080]: evaluation of constant value failed
--> $DIR/ub-uninhabit.rs:16:35
2021-03-31 04:33:45 -05:00
|
LL | const BAD_BAD_BAD: Bar = unsafe { MaybeUninit { uninit: () }.init };
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered a value of uninhabited type `Bar`
2021-03-31 04:33:45 -05:00
error[E0080]: it is undefined behavior to use this value
--> $DIR/ub-uninhabit.rs:19:1
2021-03-31 04:33:45 -05:00
|
LL | const BAD_BAD_REF: &Bar = unsafe { mem::transmute(1usize) };
2022-02-13 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered a reference pointing to uninhabited type Bar
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: $SIZE, align: $ALIGN) {
HEX_DUMP
2021-03-31 04:33:45 -05:00
}
error[E0080]: evaluation of constant value failed
--> $DIR/ub-uninhabit.rs:22:42
2021-03-31 04:33:45 -05:00
|
LL | const BAD_BAD_ARRAY: [Bar; 1] = unsafe { MaybeUninit { uninit: () }.init };
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value at [0]: encountered a value of uninhabited type `Bar`
2021-03-31 04:33:45 -05:00
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0080`.