mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
22 lines
884 B
Plaintext
22 lines
884 B
Plaintext
error[E0080]: evaluation of constant value failed
|
|
--> $DIR/ub-int-array.rs:15:9
|
|
|
|
|
LL | MaybeUninit { uninit: () }.init,
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ using uninitialized data, but this operation requires initialized memory
|
|
|
|
error[E0080]: evaluation of constant value failed
|
|
--> $DIR/ub-int-array.rs:30:13
|
|
|
|
|
LL | MaybeUninit { uninit: () }.init,
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ using uninitialized data, but this operation requires initialized memory
|
|
|
|
error[E0080]: evaluation of constant value failed
|
|
--> $DIR/ub-int-array.rs:56:13
|
|
|
|
|
LL | MaybeUninit { uninit: () }.init,
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ using uninitialized data, but this operation requires initialized memory
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0080`.
|