about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/uninit.stderr
blob: a37233ecddaee0dd4181bb95e80ecc347d9210e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: this call for this type may be undefined behavior
  --> $DIR/uninit.rs:6: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:9:31
   |
LL |     let _: [u8; 0] = unsafe { MaybeUninit::uninit().assume_init() };
   |                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 2 previous errors