blob: 195b888187e6dbe36402d0c2e7ba8a2dd0045fa1 [file] [log] [blame]
error: this looks like you are swapping `bar.a` and `bar.b` manually
--> tests/ui/swap.rs:23:5
|
LL | / let temp = bar.a;
LL | |
LL | | bar.a = bar.b;
LL | | bar.b = temp;
| |_________________^ help: try: `std::mem::swap(&mut bar.a, &mut bar.b);`
|
= note: or maybe you should use `std::mem::replace`?
= note: `-D clippy::manual-swap` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::manual_swap)]`
error: this looks like you are swapping elements of `foo` manually
--> tests/ui/swap.rs:36:5
|
LL | / let temp = foo[0];
LL | |
LL | | foo[0] = foo[1];
LL | | foo[1] = temp;
| |__________________^ help: try: `foo.swap(0, 1);`
error: this looks like you are swapping elements of `foo` manually
--> tests/ui/swap.rs:46:5
|
LL | / let temp = foo[0];
LL | |
LL | | foo[0] = foo[1];
LL | | foo[1] = temp;
| |__________________^ help: try: `foo.swap(0, 1);`
error: this looks like you are swapping elements of `foo` manually
--> tests/ui/swap.rs:66:5
|
LL | / let temp = foo[0];
LL | |
LL | | foo[0] = foo[1];
LL | | foo[1] = temp;
| |__________________^ help: try: `foo.swap(0, 1);`
error: this looks like you are swapping `a` and `b` manually
--> tests/ui/swap.rs:78:5
|
LL | / a ^= b;
LL | |
LL | | b ^= a;
LL | | a ^= b;
| |___________^ help: try: `std::mem::swap(&mut a, &mut b);`
error: this looks like you are swapping `bar.a` and `bar.b` manually
--> tests/ui/swap.rs:87:5
|
LL | / bar.a ^= bar.b;
LL | |
LL | | bar.b ^= bar.a;
LL | | bar.a ^= bar.b;
| |___________________^ help: try: `std::mem::swap(&mut bar.a, &mut bar.b);`
error: this looks like you are swapping elements of `foo` manually
--> tests/ui/swap.rs:96:5
|
LL | / foo[0] ^= foo[1];
LL | |
LL | | foo[1] ^= foo[0];
LL | | foo[0] ^= foo[1];
| |_____________________^ help: try: `foo.swap(0, 1);`
error: this looks like you are swapping `foo[0][1]` and `bar[1][0]` manually
--> tests/ui/swap.rs:126:5
|
LL | / let temp = foo[0][1];
LL | |
LL | | foo[0][1] = bar[1][0];
LL | | bar[1][0] = temp;
| |_____________________^ help: try: `std::mem::swap(&mut foo[0][1], &mut bar[1][0]);`
|
= note: or maybe you should use `std::mem::replace`?
error: this looks like you are swapping `a` and `b` manually
--> tests/ui/swap.rs:142:7
|
LL | ; let t = a;
| _______^
LL | |
LL | | a = b;
LL | | b = t;
| |__________^ help: try: `std::mem::swap(&mut a, &mut b);`
|
= note: or maybe you should use `std::mem::replace`?
error: this looks like you are swapping `c.0` and `a` manually
--> tests/ui/swap.rs:153:7
|
LL | ; let t = c.0;
| _______^
LL | |
LL | | c.0 = a;
LL | | a = t;
| |__________^ help: try: `std::mem::swap(&mut c.0, &mut a);`
|
= note: or maybe you should use `std::mem::replace`?
error: this looks like you are swapping `b` and `a` manually
--> tests/ui/swap.rs:183:5
|
LL | / let t = b;
LL | |
LL | | b = a;
LL | | a = t;
| |__________^ help: try: `std::mem::swap(&mut b, &mut a);`
|
= note: or maybe you should use `std::mem::replace`?
error: this looks like you are trying to swap `a` and `b`
--> tests/ui/swap.rs:138:5
|
LL | / a = b;
LL | |
LL | | b = a;
| |_________^ help: try: `std::mem::swap(&mut a, &mut b)`
|
= note: or maybe you should use `std::mem::replace`?
= note: `#[deny(clippy::almost_swapped)]` on by default
error: this looks like you are trying to swap `c.0` and `a`
--> tests/ui/swap.rs:149:5
|
LL | / c.0 = a;
LL | |
LL | | a = c.0;
| |___________^ help: try: `std::mem::swap(&mut c.0, &mut a)`
|
= note: or maybe you should use `std::mem::replace`?
error: this looks like you are trying to swap `a` and `b`
--> tests/ui/swap.rs:158:5
|
LL | / let a = b;
LL | |
LL | | let b = a;
| |_____________^ help: try: `std::mem::swap(&mut a, &mut b)`
|
= note: or maybe you should use `std::mem::replace`?
error: this looks like you are trying to swap `d` and `c`
--> tests/ui/swap.rs:164:5
|
LL | / d = c;
LL | |
LL | | c = d;
| |_________^ help: try: `std::mem::swap(&mut d, &mut c)`
|
= note: or maybe you should use `std::mem::replace`?
error: this looks like you are trying to swap `a` and `b`
--> tests/ui/swap.rs:169:5
|
LL | / let a = b;
LL | |
LL | | b = a;
| |_________^ help: try: `std::mem::swap(&mut a, &mut b)`
|
= note: or maybe you should use `std::mem::replace`?
error: this looks like you are swapping `s.0.x` and `s.0.y` manually
--> tests/ui/swap.rs:219:5
|
LL | / let t = s.0.x;
LL | |
LL | | s.0.x = s.0.y;
LL | | s.0.y = t;
| |______________^ help: try: `std::mem::swap(&mut s.0.x, &mut s.0.y);`
|
= note: or maybe you should use `std::mem::replace`?
error: aborting due to 17 previous errors