2021-08-12 04:16:25 -05:00
|
|
|
error: this looks like you are swapping `bar.a` and `bar.b` manually
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/swap.rs:27:5
|
2021-08-12 04:16:25 -05:00
|
|
|
|
|
|
|
|
LL | / let temp = bar.a;
|
|
|
|
LL | | bar.a = bar.b;
|
|
|
|
LL | | bar.b = temp;
|
2023-03-10 03:53:50 -06:00
|
|
|
| |_________________^ help: try: `std::mem::swap(&mut bar.a, &mut bar.b);`
|
2021-08-12 04:16:25 -05:00
|
|
|
|
|
|
|
|
= note: or maybe you should use `std::mem::replace`?
|
2022-09-22 11:04:22 -05:00
|
|
|
= note: `-D clippy::manual-swap` implied by `-D warnings`
|
2021-08-12 04:16:25 -05:00
|
|
|
|
2017-02-07 14:05:30 -06:00
|
|
|
error: this looks like you are swapping elements of `foo` manually
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/swap.rs:39:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / let temp = foo[0];
|
|
|
|
LL | | foo[0] = foo[1];
|
|
|
|
LL | | foo[1] = temp;
|
2023-03-10 03:53:50 -06:00
|
|
|
| |__________________^ help: try: `foo.swap(0, 1);`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: this looks like you are swapping elements of `foo` manually
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/swap.rs:48:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / let temp = foo[0];
|
|
|
|
LL | | foo[0] = foo[1];
|
|
|
|
LL | | foo[1] = temp;
|
2023-03-10 03:53:50 -06:00
|
|
|
| |__________________^ help: try: `foo.swap(0, 1);`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: this looks like you are swapping elements of `foo` manually
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/swap.rs:67:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / let temp = foo[0];
|
|
|
|
LL | | foo[0] = foo[1];
|
|
|
|
LL | | foo[1] = temp;
|
2023-03-10 03:53:50 -06:00
|
|
|
| |__________________^ help: try: `foo.swap(0, 1);`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: this looks like you are swapping `a` and `b` manually
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/swap.rs:78:5
|
2021-08-12 04:16:25 -05:00
|
|
|
|
|
|
|
|
LL | / a ^= b;
|
|
|
|
LL | | b ^= a;
|
|
|
|
LL | | a ^= b;
|
2023-03-10 03:53:50 -06:00
|
|
|
| |___________^ help: try: `std::mem::swap(&mut a, &mut b);`
|
2021-08-12 04:16:25 -05:00
|
|
|
|
|
|
|
error: this looks like you are swapping `bar.a` and `bar.b` manually
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/swap.rs:86:5
|
2021-08-12 04:16:25 -05:00
|
|
|
|
|
|
|
|
LL | / bar.a ^= bar.b;
|
|
|
|
LL | | bar.b ^= bar.a;
|
|
|
|
LL | | bar.a ^= bar.b;
|
2023-03-10 03:53:50 -06:00
|
|
|
| |___________________^ help: try: `std::mem::swap(&mut bar.a, &mut bar.b);`
|
2021-08-12 04:16:25 -05:00
|
|
|
|
|
|
|
error: this looks like you are swapping elements of `foo` manually
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/swap.rs:94:5
|
2021-08-12 04:16:25 -05:00
|
|
|
|
|
|
|
|
LL | / foo[0] ^= foo[1];
|
|
|
|
LL | | foo[1] ^= foo[0];
|
|
|
|
LL | | foo[0] ^= foo[1];
|
2023-03-10 03:53:50 -06:00
|
|
|
| |_____________________^ help: try: `foo.swap(0, 1);`
|
2021-08-12 04:16:25 -05:00
|
|
|
|
|
|
|
error: this looks like you are swapping `foo[0][1]` and `bar[1][0]` manually
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/swap.rs:123:5
|
2021-08-12 04:16:25 -05:00
|
|
|
|
|
|
|
|
LL | / let temp = foo[0][1];
|
|
|
|
LL | | foo[0][1] = bar[1][0];
|
|
|
|
LL | | bar[1][0] = temp;
|
2023-03-10 03:53:50 -06:00
|
|
|
| |_____________________^ help: try: `std::mem::swap(&mut foo[0][1], &mut bar[1][0]);`
|
2021-08-12 04:16:25 -05:00
|
|
|
|
|
|
|
|
= note: or maybe you should use `std::mem::replace`?
|
|
|
|
|
|
|
|
error: this looks like you are swapping `a` and `b` manually
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/swap.rs:137:7
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | ; let t = a;
|
2018-12-11 13:50:55 -06:00
|
|
|
| _______^
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | | a = b;
|
|
|
|
LL | | b = t;
|
2023-03-10 03:53:50 -06:00
|
|
|
| |__________^ help: try: `std::mem::swap(&mut a, &mut b);`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
= note: or maybe you should use `std::mem::replace`?
|
|
|
|
|
|
|
|
error: this looks like you are swapping `c.0` and `a` manually
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/swap.rs:146:7
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | ; let t = c.0;
|
2018-12-11 13:50:55 -06:00
|
|
|
| _______^
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | | c.0 = a;
|
|
|
|
LL | | a = t;
|
2023-03-10 03:53:50 -06:00
|
|
|
| |__________^ help: try: `std::mem::swap(&mut c.0, &mut a);`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
= note: or maybe you should use `std::mem::replace`?
|
|
|
|
|
2023-02-25 18:08:29 -06:00
|
|
|
error: this looks like you are swapping `b` and `a` manually
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/swap.rs:172:5
|
2023-02-25 18:08:29 -06:00
|
|
|
|
|
|
|
|
LL | / let t = b;
|
|
|
|
LL | | b = a;
|
|
|
|
LL | | a = t;
|
2023-03-10 03:53:50 -06:00
|
|
|
| |__________^ help: try: `std::mem::swap(&mut b, &mut a);`
|
2023-02-25 18:08:29 -06:00
|
|
|
|
|
|
|
|
= note: or maybe you should use `std::mem::replace`?
|
|
|
|
|
2017-02-07 14:05:30 -06:00
|
|
|
error: this looks like you are trying to swap `a` and `b`
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/swap.rs:134:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / a = b;
|
|
|
|
LL | | b = a;
|
2017-07-21 03:40:23 -05:00
|
|
|
| |_________^ help: try: `std::mem::swap(&mut a, &mut b)`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
= note: or maybe you should use `std::mem::replace`?
|
2022-09-22 11:04:22 -05:00
|
|
|
= note: `-D clippy::almost-swapped` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: this looks like you are trying to swap `c.0` and `a`
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/swap.rs:143:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / c.0 = a;
|
|
|
|
LL | | a = c.0;
|
2017-07-21 03:40:23 -05:00
|
|
|
| |___________^ help: try: `std::mem::swap(&mut c.0, &mut a)`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
= note: or maybe you should use `std::mem::replace`?
|
|
|
|
|
2023-02-25 18:08:29 -06:00
|
|
|
error: this looks like you are trying to swap `a` and `b`
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/swap.rs:150:5
|
2023-02-25 18:08:29 -06:00
|
|
|
|
|
|
|
|
LL | / let a = b;
|
|
|
|
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`
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/swap.rs:155:5
|
2023-02-25 18:08:29 -06:00
|
|
|
|
|
|
|
|
LL | / d = c;
|
|
|
|
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`
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/swap.rs:159:5
|
2023-02-25 18:08:29 -06:00
|
|
|
|
|
|
|
|
LL | / let a = b;
|
|
|
|
LL | | b = a;
|
|
|
|
| |_________^ help: try: `std::mem::swap(&mut a, &mut b)`
|
|
|
|
|
|
|
|
|
= note: or maybe you should use `std::mem::replace`?
|
|
|
|
|
2022-01-13 06:18:19 -06:00
|
|
|
error: this looks like you are swapping `s.0.x` and `s.0.y` manually
|
2023-03-24 08:04:35 -05:00
|
|
|
--> $DIR/swap.rs:207:5
|
2022-01-13 06:18:19 -06:00
|
|
|
|
|
|
|
|
LL | / let t = s.0.x;
|
|
|
|
LL | | s.0.x = s.0.y;
|
|
|
|
LL | | s.0.y = t;
|
2023-03-10 03:53:50 -06:00
|
|
|
| |______________^ help: try: `std::mem::swap(&mut s.0.x, &mut s.0.y);`
|
2022-01-13 06:18:19 -06:00
|
|
|
|
|
|
|
|
= note: or maybe you should use `std::mem::replace`?
|
|
|
|
|
2023-02-25 18:08:29 -06:00
|
|
|
error: aborting due to 17 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|