2017-02-07 20:05:30 +00:00
|
|
|
error: this looks like you are swapping elements of `foo` manually
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/swap.rs:11:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-04-23 13:25:22 +00:00
|
|
|
11 | / let temp = foo[0];
|
2017-02-07 20:05:30 +00:00
|
|
|
12 | | foo[0] = foo[1];
|
|
|
|
13 | | foo[1] = temp;
|
2017-07-21 08:40:23 +00:00
|
|
|
| |_________________^ help: try: `foo.swap(0, 1)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
= note: `-D manual-swap` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: this looks like you are swapping elements of `foo` manually
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/swap.rs:20:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 14:49:54 +00:00
|
|
|
20 | / let temp = foo[0];
|
|
|
|
21 | | foo[0] = foo[1];
|
|
|
|
22 | | foo[1] = temp;
|
2017-07-21 08:40:23 +00:00
|
|
|
| |_________________^ help: try: `foo.swap(0, 1)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: this looks like you are swapping elements of `foo` manually
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/swap.rs:29:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 14:49:54 +00:00
|
|
|
29 | / let temp = foo[0];
|
|
|
|
30 | | foo[0] = foo[1];
|
|
|
|
31 | | foo[1] = temp;
|
2017-07-21 08:40:23 +00:00
|
|
|
| |_________________^ help: try: `foo.swap(0, 1)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: this looks like you are swapping `a` and `b` manually
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/swap.rs:47:7
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 14:49:54 +00:00
|
|
|
47 | ; let t = a;
|
2017-04-23 13:25:22 +00:00
|
|
|
| _______^
|
2017-05-11 14:49:54 +00:00
|
|
|
48 | | a = b;
|
|
|
|
49 | | b = t;
|
2017-07-21 08:40:23 +00:00
|
|
|
| |_________^ help: try: `std::mem::swap(&mut a, &mut b)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
|
= note: or maybe you should use `std::mem::replace`?
|
|
|
|
|
|
|
|
error: this looks like you are swapping `c.0` and `a` manually
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/swap.rs:56:7
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 14:49:54 +00:00
|
|
|
56 | ; let t = c.0;
|
2017-04-23 13:25:22 +00:00
|
|
|
| _______^
|
2017-05-11 14:49:54 +00:00
|
|
|
57 | | c.0 = a;
|
|
|
|
58 | | a = t;
|
2017-07-21 08:40:23 +00:00
|
|
|
| |_________^ help: try: `std::mem::swap(&mut c.0, &mut a)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
|
= note: or maybe you should use `std::mem::replace`?
|
|
|
|
|
|
|
|
error: this looks like you are trying to swap `a` and `b`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/swap.rs:44:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 14:49:54 +00:00
|
|
|
44 | / a = b;
|
|
|
|
45 | | b = a;
|
2017-07-21 08:40:23 +00:00
|
|
|
| |_________^ help: try: `std::mem::swap(&mut a, &mut b)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
= note: `-D almost-swapped` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
= note: or maybe you should use `std::mem::replace`?
|
|
|
|
|
|
|
|
error: this looks like you are trying to swap `c.0` and `a`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/swap.rs:53:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 14:49:54 +00:00
|
|
|
53 | / c.0 = a;
|
|
|
|
54 | | a = c.0;
|
2017-07-21 08:40:23 +00:00
|
|
|
| |___________^ help: try: `std::mem::swap(&mut c.0, &mut a)`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
|
= note: or maybe you should use `std::mem::replace`?
|
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 7 previous errors
|
|
|
|
|