mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
22 lines
804 B
Text
22 lines
804 B
Text
error: this call for this type may be undefined behavior
|
|
--> $DIR/uninit.rs:12:29
|
|
|
|
|
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
|
|
--> $DIR/uninit.rs:35:29
|
|
|
|
|
LL | let _: usize = unsafe { MaybeUninit::uninit().assume_init() };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: this call for this type may be undefined behavior
|
|
--> $DIR/uninit.rs:44:29
|
|
|
|
|
LL | let _: T = unsafe { MaybeUninit::uninit().assume_init() };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|