Skip to content

Commit be3c03a

Browse files
committed
chore: rebase master
1 parent dad826c commit be3c03a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/ui/manual_memcpy/without_loop_counters.stderr

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ LL | | }
145145
| |_____^ help: try replacing the loop by: `dst.copy_from_slice(&src);`
146146

147147
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
149149
|
150150
LL | / for i in 0..5 {
151151
LL | |
@@ -154,7 +154,7 @@ LL | | }
154154
| |_____^ help: try replacing the loop by: `dst.copy_from_slice(&src[0]);`
155155

156156
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
158158
|
159159
LL | / for i in 0..5 {
160160
LL | |
@@ -163,7 +163,7 @@ LL | | }
163163
| |_____^ help: try replacing the loop by: `dst.copy_from_slice(&src[0][1]);`
164164

165165
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
167167
|
168168
LL | / for i in 0..src.len() {
169169
LL | |

0 commit comments

Comments
 (0)