File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ LL | | }
145
145
| |_____^ help: try replacing the loop by: `dst.copy_from_slice(&src);`
146
146
147
147
error: it looks like you're manually copying between slices
148
- --> $DIR/without_loop_counters.rs:201:5
148
+ --> $DIR/manual_memcpy/ without_loop_counters.rs:201:5
149
149
|
150
150
LL | / for i in 0..5 {
151
151
LL | |
@@ -154,7 +154,7 @@ LL | | }
154
154
| |_____^ help: try replacing the loop by: `dst.copy_from_slice(&src[0]);`
155
155
156
156
error: it looks like you're manually copying between slices
157
- --> $DIR/without_loop_counters.rs:207:5
157
+ --> $DIR/manual_memcpy/ without_loop_counters.rs:207:5
158
158
|
159
159
LL | / for i in 0..5 {
160
160
LL | |
@@ -163,7 +163,7 @@ LL | | }
163
163
| |_____^ help: try replacing the loop by: `dst.copy_from_slice(&src[0][1]);`
164
164
165
165
error: it looks like you're manually copying between slices
166
- --> $DIR/without_loop_counters.rs:215:5
166
+ --> $DIR/manual_memcpy/ without_loop_counters.rs:215:5
167
167
|
168
168
LL | / for i in 0..src.len() {
169
169
LL | |
You can’t perform that action at this time.
0 commit comments