summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/borrow-for-loop-head.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /tests/ui/suggestions/borrow-for-loop-head.stderr
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/suggestions/borrow-for-loop-head.stderr')
-rw-r--r--tests/ui/suggestions/borrow-for-loop-head.stderr29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/ui/suggestions/borrow-for-loop-head.stderr b/tests/ui/suggestions/borrow-for-loop-head.stderr
new file mode 100644
index 000000000..cbdb94877
--- /dev/null
+++ b/tests/ui/suggestions/borrow-for-loop-head.stderr
@@ -0,0 +1,29 @@
+error[E0505]: cannot move out of `a` because it is borrowed
+ --> $DIR/borrow-for-loop-head.rs:4:18
+ |
+LL | for i in &a {
+ | -- borrow of `a` occurs here
+LL | for j in a {
+ | ^ move out of `a` occurs here
+
+error[E0382]: use of moved value: `a`
+ --> $DIR/borrow-for-loop-head.rs:4:18
+ |
+LL | let a = vec![1, 2, 3];
+ | - move occurs because `a` has type `Vec<i32>`, which does not implement the `Copy` trait
+LL | for i in &a {
+ | ----------- inside of this loop
+LL | for j in a {
+ | ^ `a` moved due to this implicit call to `.into_iter()`, in previous iteration of loop
+ |
+note: `into_iter` takes ownership of the receiver `self`, which moves `a`
+ --> $SRC_DIR/core/src/iter/traits/collect.rs:LL:COL
+help: consider iterating over a slice of the `Vec<i32>`'s content to avoid moving into the `for` loop
+ |
+LL | for j in &a {
+ | +
+
+error: aborting due to 2 previous errors
+
+Some errors have detailed explanations: E0382, E0505.
+For more information about an error, try `rustc --explain E0382`.