summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/repl_uninit.stderr
blob: c1f55d7601e5ccce9592e5653330435d7f114832 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
error: replacing with `mem::uninitialized()`
  --> $DIR/repl_uninit.rs:15:23
   |
LL |         let taken_v = mem::replace(&mut v, mem::uninitialized());
   |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::mem-replace-with-uninit` implied by `-D warnings`
   = help: consider using the `take_mut` crate instead

error: replacing with `mem::zeroed()`
  --> $DIR/repl_uninit.rs:21:23
   |
LL |         let taken_v = mem::replace(&mut v, mem::zeroed());
   |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: consider using a default value or the `take_mut` crate instead

error: replacing with `mem::uninitialized()`
  --> $DIR/repl_uninit.rs:33:28
   |
LL |     let taken_u = unsafe { mem::replace(uref, mem::uninitialized()) };
   |                            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: consider using the `take_mut` crate instead

error: aborting due to 3 previous errors