summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/uninit.stderr
blob: 248de56da76cbab3e6140038f642da1e473e5203 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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:33:29
   |
LL |     let _: usize = unsafe { MaybeUninit::uninit().assume_init() };
   |                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: this call for this type may be undefined behavior
  --> $DIR/uninit.rs:41:29
   |
LL |         let _: T = unsafe { MaybeUninit::uninit().assume_init() };
   |                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 3 previous errors