2019-08-31 20:25:28 +02:00
|
|
|
error: this call for this type may be undefined behavior
|
2023-03-24 14:04:35 +01:00
|
|
|
--> $DIR/uninit.rs:12:29
|
2019-08-31 20:25:28 +02: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
|
2023-03-24 14:04:35 +01:00
|
|
|
--> $DIR/uninit.rs:33:29
|
2019-08-31 20:25:28 +02:00
|
|
|
|
|
2023-04-11 15:31:08 +02:00
|
|
|
LL | let _: usize = unsafe { MaybeUninit::uninit().assume_init() };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-08-31 20:25:28 +02:00
|
|
|
|
2021-04-22 11:31:13 +02:00
|
|
|
error: this call for this type may be undefined behavior
|
2023-04-11 15:31:08 +02:00
|
|
|
--> $DIR/uninit.rs:41:29
|
2021-04-22 11:31:13 +02:00
|
|
|
|
|
2023-04-11 15:31:08 +02:00
|
|
|
LL | let _: T = unsafe { MaybeUninit::uninit().assume_init() };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2021-04-22 11:31:13 +02:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2019-08-31 20:25:28 +02:00
|
|
|
|