summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/swap_ptr_to_ref_unfixable.stderr
blob: ce1d7814250a7e40334b6e0375a7743e92414486 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
error: call to `core::mem::swap` with a parameter derived from a raw pointer
  --> $DIR/swap_ptr_to_ref_unfixable.rs:14:9
   |
LL |         core::mem::swap(addr_of_mut_to_ref!(x), &mut *y);
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::swap-ptr-to-ref` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::swap_ptr_to_ref)]`

error: call to `core::mem::swap` with a parameter derived from a raw pointer
  --> $DIR/swap_ptr_to_ref_unfixable.rs:17:9
   |
LL |         core::mem::swap(&mut *y, addr_of_mut_to_ref!(x));
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: call to `core::mem::swap` with a parameter derived from a raw pointer
  --> $DIR/swap_ptr_to_ref_unfixable.rs:19:9
   |
LL |         core::mem::swap(addr_of_mut_to_ref!(x), addr_of_mut_to_ref!(x));
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 3 previous errors