rust/tests/ui/swap.stderr

96 lines
2.8 KiB
Plaintext
Raw Normal View History

error: this looks like you are swapping elements of `foo` manually
2019-12-03 12:42:05 +00:00
--> $DIR/swap.rs:35:5
|
2018-12-27 15:57:55 +00:00
LL | / let temp = foo[0];
LL | | foo[0] = foo[1];
LL | | foo[1] = temp;
2017-07-21 08:40:23 +00: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 12:42:05 +00:00
--> $DIR/swap.rs:44:5
|
2018-12-27 15:57:55 +00:00
LL | / let temp = foo[0];
LL | | foo[0] = foo[1];
LL | | foo[1] = temp;
2017-07-21 08:40:23 +00:00
| |_________________^ help: try: `foo.swap(0, 1)`
error: this looks like you are swapping elements of `foo` manually
2019-12-03 12:42:05 +00:00
--> $DIR/swap.rs:62:5
|
2018-12-27 15:57:55 +00:00
LL | / let temp = foo[0];
LL | | foo[0] = foo[1];
LL | | foo[1] = temp;
2017-07-21 08:40:23 +00:00
| |_________________^ help: try: `foo.swap(0, 1)`
2021-05-02 16:42:28 +00:00
error: this xor-based swap of `a` and `b` can be more clearly expressed using `std::mem::swap`
--> $DIR/swap.rs:73:5
|
LL | / a ^= b;
LL | | b ^= a;
LL | | a ^= b;
| |___________^ help: try: `std::mem::swap(&mut a, &mut b)`
|
= note: `-D clippy::xor-swap` implied by `-D warnings`
error: this xor-based swap of `bar.a` and `bar.b` can be more clearly expressed using `std::mem::swap`
--> $DIR/swap.rs:81:5
|
LL | / bar.a ^= bar.b;
LL | | bar.b ^= bar.a;
LL | | bar.a ^= bar.b;
| |___________________^ help: try: `std::mem::swap(&mut bar.a, &mut bar.b)`
error: this xor-based swap of the elements of `foo` can be more clearly expressed using `.swap`
--> $DIR/swap.rs:89:5
|
LL | / foo[0] ^= foo[1];
LL | | foo[1] ^= foo[0];
LL | | foo[0] ^= foo[1];
| |_____________________^ help: try: `foo.swap(0, 1)`
error: this looks like you are swapping `a` and `b` manually
2021-05-02 16:42:28 +00:00
--> $DIR/swap.rs:131:7
|
2018-12-27 15:57:55 +00:00
LL | ; let t = a;
| _______^
2018-12-27 15:57:55 +00:00
LL | | a = b;
LL | | b = t;
2017-07-21 08:40:23 +00: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
2021-05-02 16:42:28 +00:00
--> $DIR/swap.rs:140:7
|
2018-12-27 15:57:55 +00:00
LL | ; let t = c.0;
| _______^
2018-12-27 15:57:55 +00:00
LL | | c.0 = a;
LL | | a = t;
2017-07-21 08:40:23 +00: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`
2021-05-02 16:42:28 +00:00
--> $DIR/swap.rs:128:5
|
2018-12-27 15:57:55 +00:00
LL | / a = b;
LL | | b = a;
2017-07-21 08:40:23 +00: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`
2021-05-02 16:42:28 +00:00
--> $DIR/swap.rs:137:5
|
2018-12-27 15:57:55 +00:00
LL | / c.0 = a;
LL | | a = c.0;
2017-07-21 08:40:23 +00:00
| |___________^ help: try: `std::mem::swap(&mut c.0, &mut a)`
|
= note: or maybe you should use `std::mem::replace`?
2021-05-02 16:42:28 +00:00
error: aborting due to 10 previous errors
2018-01-16 16:06:27 +00:00