summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/swap.stderr
blob: f0acbfe253f43aefe2b0617680157477893106bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
error: this looks like you are swapping `bar.a` and `bar.b` manually
  --> $DIR/swap.rs:25:5
   |
LL | /     let temp = bar.a;
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`

error: this looks like you are swapping elements of `foo` manually
  --> $DIR/swap.rs:37:5
   |
LL | /     let temp = foo[0];
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
  --> $DIR/swap.rs:46:5
   |
LL | /     let temp = foo[0];
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
  --> $DIR/swap.rs:65:5
   |
LL | /     let temp = foo[0];
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
  --> $DIR/swap.rs:76:5
   |
LL | /     a ^= b;
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
  --> $DIR/swap.rs:84: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 looks like you are swapping elements of `foo` manually
  --> $DIR/swap.rs:92: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 `foo[0][1]` and `bar[1][0]` manually
  --> $DIR/swap.rs:121:5
   |
LL | /     let temp = foo[0][1];
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
  --> $DIR/swap.rs:135:7
   |
LL |       ; let t = a;
   |  _______^
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
  --> $DIR/swap.rs:144:7
   |
LL |       ; let t = c.0;
   |  _______^
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
  --> $DIR/swap.rs:170:5
   |
LL | /     let t = b;
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`
  --> $DIR/swap.rs:132:5
   |
LL | /     a = b;
LL | |     b = a;
   | |_________^ help: try: `std::mem::swap(&mut a, &mut b)`
   |
   = note: or maybe you should use `std::mem::replace`?
   = note: `-D clippy::almost-swapped` implied by `-D warnings`

error: this looks like you are trying to swap `c.0` and `a`
  --> $DIR/swap.rs:141:5
   |
LL | /     c.0 = a;
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`
  --> $DIR/swap.rs:148:5
   |
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`
  --> $DIR/swap.rs:153:5
   |
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`
  --> $DIR/swap.rs:157:5
   |
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`?

error: this looks like you are swapping `s.0.x` and `s.0.y` manually
  --> $DIR/swap.rs:205:5
   |
LL | /     let t = s.0.x;
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