2019-08-31 18:25:28 +00:00
|
|
|
error: this call for this type may be undefined behavior
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/uninit.rs:12: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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/uninit.rs:35:29
|
2019-08-31 18:25:28 +00:00
|
|
|
|
|
2023-03-26 14:52:46 +00:00
|
|
|
LL | let _: usize = unsafe { MaybeUninit::uninit().assume_init() };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-08-31 18:25:28 +00:00
|
|
|
|
2021-04-07 20:19:25 +00:00
|
|
|
error: this call for this type may be undefined behavior
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/uninit.rs:44:29
|
2021-04-07 20:19:25 +00:00
|
|
|
|
|
2023-03-26 14:52:46 +00:00
|
|
|
LL | let _: T = unsafe { MaybeUninit::uninit().assume_init() };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2021-04-07 20:19:25 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2019-08-31 18:25:28 +00:00
|
|
|
|