2019-08-31 18:25:28 +00:00
|
|
|
error: this call for this type may be undefined behavior
|
2022-05-05 14:12:52 +00:00
|
|
|
--> $DIR/uninit.rs:7:29
|
2019-08-31 18:25:28 +00:00
|
|
|
|
|
|
|
|
LL | let _: usize = unsafe { MaybeUninit::uninit().assume_init() };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `#[deny(clippy::uninit_assumed_init)]` on by default
|
|
|
|
|
|
|
|
error: this call for this type may be undefined behavior
|
2022-05-05 14:12:52 +00:00
|
|
|
--> $DIR/uninit.rs:10:31
|
2019-08-31 18:25:28 +00:00
|
|
|
|
|
|
|
|
LL | let _: [u8; 0] = unsafe { MaybeUninit::uninit().assume_init() };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
error: this call for this type may be undefined behavior
|
2022-05-05 14:12:52 +00:00
|
|
|
--> $DIR/uninit.rs:25:29
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
|
|
|
LL | let _: usize = unsafe { mem::MaybeUninit::uninit().assume_init() };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2019-08-31 18:25:28 +00:00
|
|
|
|