mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-05 03:24:06 +03:00
23 lines
816 B
Plaintext
23 lines
816 B
Plaintext
error: this call for this type may be undefined behavior
|
|
--> tests/ui/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
|
|
--> tests/ui/uninit.rs:34:29
|
|
|
|
|
LL | let _: usize = unsafe { MaybeUninit::uninit().assume_init() };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: this call for this type may be undefined behavior
|
|
--> tests/ui/uninit.rs:43:29
|
|
|
|
|
LL | let _: T = unsafe { MaybeUninit::uninit().assume_init() };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|