rust/tests/ui/swap.stderr

70 lines
1.9 KiB
Text
Raw Normal View History

error: this looks like you are swapping elements of `foo` manually
2019-12-03 13:42:05 +01:00
--> $DIR/swap.rs:35:5
|
2018-12-27 16:57:55 +01:00
LL | / let temp = foo[0];
LL | | foo[0] = foo[1];
LL | | foo[1] = temp;
2017-07-21 10:40:23 +02:00
| |_________________^ help: try: `foo.swap(0, 1)`
|
= note: `-D clippy::manual-swap` implied by `-D warnings`
error: this looks like you are swapping elements of `foo` manually
2019-12-03 13:42:05 +01:00
--> $DIR/swap.rs:44:5
|
2018-12-27 16:57:55 +01:00
LL | / let temp = foo[0];
LL | | foo[0] = foo[1];
LL | | foo[1] = temp;
2017-07-21 10:40:23 +02:00
| |_________________^ help: try: `foo.swap(0, 1)`
error: this looks like you are swapping elements of `foo` manually
2019-12-03 13:42:05 +01:00
--> $DIR/swap.rs:62:5
|
2018-12-27 16:57:55 +01:00
LL | / let temp = foo[0];
LL | | foo[0] = foo[1];
LL | | foo[1] = temp;
2017-07-21 10:40:23 +02:00
| |_________________^ help: try: `foo.swap(0, 1)`
error: this looks like you are swapping `a` and `b` manually
2019-12-03 13:42:05 +01:00
--> $DIR/swap.rs:83:7
|
2018-12-27 16:57:55 +01:00
LL | ; let t = a;
| _______^
2018-12-27 16:57:55 +01:00
LL | | a = b;
LL | | b = t;
2017-07-21 10:40:23 +02:00
| |_________^ 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
2019-12-03 13:42:05 +01:00
--> $DIR/swap.rs:92:7
|
2018-12-27 16:57:55 +01:00
LL | ; let t = c.0;
| _______^
2018-12-27 16:57:55 +01:00
LL | | c.0 = a;
LL | | a = t;
2017-07-21 10:40:23 +02:00
| |_________^ 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`
2019-12-03 13:42:05 +01:00
--> $DIR/swap.rs:80:5
|
2018-12-27 16:57:55 +01:00
LL | / a = b;
LL | | b = a;
2017-07-21 10:40:23 +02:00
| |_________^ help: try: `std::mem::swap(&mut a, &mut b)`
|
= note: `-D clippy::almost-swapped` implied by `-D warnings`
= note: or maybe you should use `std::mem::replace`?
error: this looks like you are trying to swap `c.0` and `a`
2019-12-03 13:42:05 +01:00
--> $DIR/swap.rs:89:5
|
2018-12-27 16:57:55 +01:00
LL | / c.0 = a;
LL | | a = c.0;
2017-07-21 10:40:23 +02:00
| |___________^ help: try: `std::mem::swap(&mut c.0, &mut a)`
|
= note: or maybe you should use `std::mem::replace`?
2018-01-16 17:06:27 +01:00
error: aborting due to 7 previous errors