rust/tests/ui/swap_ptr_to_ref.stderr

29 lines
1.2 KiB
Plaintext
Raw Normal View History

2022-05-30 11:36:05 -05:00
error: call to `core::mem::swap` with a parameter derived from a raw pointer
2023-07-27 06:40:22 -05:00
--> $DIR/swap_ptr_to_ref.rs:11:9
2022-05-30 11:36:05 -05:00
|
LL | core::mem::swap(&mut *y, &mut *z);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use ptr::swap: `core::ptr::swap(y, z)`
|
= note: `-D clippy::swap-ptr-to-ref` implied by `-D warnings`
error: call to `core::mem::swap` with a parameter derived from a raw pointer
2023-07-27 06:40:22 -05:00
--> $DIR/swap_ptr_to_ref.rs:12:9
2022-05-30 11:36:05 -05:00
|
LL | core::mem::swap(&mut *y, &mut x);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use ptr::swap: `core::ptr::swap(y, &mut x)`
error: call to `core::mem::swap` with a parameter derived from a raw pointer
2023-07-27 06:40:22 -05:00
--> $DIR/swap_ptr_to_ref.rs:13:9
2022-05-30 11:36:05 -05:00
|
LL | core::mem::swap(&mut x, &mut *y);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use ptr::swap: `core::ptr::swap(&mut x, y)`
error: call to `core::mem::swap` with a parameter derived from a raw pointer
2023-07-27 06:40:22 -05:00
--> $DIR/swap_ptr_to_ref.rs:14:9
2022-05-30 11:36:05 -05:00
|
LL | core::mem::swap(&mut *addr_of_mut!(x), &mut *addr_of_mut!(x));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use ptr::swap: `core::ptr::swap(addr_of_mut!(x), addr_of_mut!(x))`
error: aborting due to 4 previous errors