summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/closure-access-spans.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/ui/nll/closure-access-spans.stderr
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/nll/closure-access-spans.stderr')
-rw-r--r--src/test/ui/nll/closure-access-spans.stderr110
1 files changed, 110 insertions, 0 deletions
diff --git a/src/test/ui/nll/closure-access-spans.stderr b/src/test/ui/nll/closure-access-spans.stderr
new file mode 100644
index 000000000..e9d7ca953
--- /dev/null
+++ b/src/test/ui/nll/closure-access-spans.stderr
@@ -0,0 +1,110 @@
+error[E0502]: cannot borrow `x` as immutable because it is also borrowed as mutable
+ --> $DIR/closure-access-spans.rs:5:5
+ |
+LL | let r = &mut x;
+ | ------ mutable borrow occurs here
+LL | || x;
+ | ^^ - second borrow occurs due to use of `x` in closure
+ | |
+ | immutable borrow occurs here
+LL | r.use_mut();
+ | ----------- mutable borrow later used here
+
+error[E0499]: cannot borrow `x` as mutable more than once at a time
+ --> $DIR/closure-access-spans.rs:11:5
+ |
+LL | let r = &mut x;
+ | ------ first mutable borrow occurs here
+LL | || x = 2;
+ | ^^ - second borrow occurs due to use of `x` in closure
+ | |
+ | second mutable borrow occurs here
+LL | r.use_mut();
+ | ----------- first borrow later used here
+
+error[E0500]: closure requires unique access to `x` but it is already borrowed
+ --> $DIR/closure-access-spans.rs:17:5
+ |
+LL | let r = &mut x;
+ | ------ borrow occurs here
+LL | || *x = 2;
+ | ^^ -- second borrow occurs due to use of `x` in closure
+ | |
+ | closure construction occurs here
+LL | r.use_mut();
+ | ----------- first borrow later used here
+
+error[E0503]: cannot use `x` because it was mutably borrowed
+ --> $DIR/closure-access-spans.rs:23:13
+ |
+LL | let r = &mut x;
+ | ------ borrow of `x` occurs here
+LL | move || x;
+ | ^ use of borrowed `x`
+LL | r.use_ref();
+ | ----------- borrow later used here
+
+error[E0505]: cannot move out of `x` because it is borrowed
+ --> $DIR/closure-access-spans.rs:29:5
+ |
+LL | let r = &x;
+ | -- borrow of `x` occurs here
+LL | || x;
+ | ^^ - move occurs due to use in closure
+ | |
+ | move out of `x` occurs here
+LL | r.use_ref();
+ | ----------- borrow later used here
+
+error[E0382]: borrow of moved value: `x`
+ --> $DIR/closure-access-spans.rs:35:5
+ |
+LL | fn closure_imm_capture_moved(mut x: String) {
+ | ----- move occurs because `x` has type `String`, which does not implement the `Copy` trait
+LL | let r = x;
+ | - value moved here
+LL | || x.len();
+ | ^^ - borrow occurs due to use in closure
+ | |
+ | value borrowed here after move
+
+error[E0382]: borrow of moved value: `x`
+ --> $DIR/closure-access-spans.rs:40:5
+ |
+LL | fn closure_mut_capture_moved(mut x: String) {
+ | ----- move occurs because `x` has type `String`, which does not implement the `Copy` trait
+LL | let r = x;
+ | - value moved here
+LL | || x = String::new();
+ | ^^ - borrow occurs due to use in closure
+ | |
+ | value borrowed here after move
+
+error[E0382]: borrow of moved value: `x`
+ --> $DIR/closure-access-spans.rs:45:5
+ |
+LL | fn closure_unique_capture_moved(x: &mut String) {
+ | - move occurs because `x` has type `&mut String`, which does not implement the `Copy` trait
+LL | let r = x;
+ | - value moved here
+LL | || *x = String::new();
+ | ^^ -- borrow occurs due to use in closure
+ | |
+ | value borrowed here after move
+
+error[E0382]: use of moved value: `x`
+ --> $DIR/closure-access-spans.rs:50:5
+ |
+LL | fn closure_move_capture_moved(x: &mut String) {
+ | - move occurs because `x` has type `&mut String`, which does not implement the `Copy` trait
+LL | let r = x;
+ | - value moved here
+LL | || x;
+ | ^^ - use occurs due to use in closure
+ | |
+ | value used here after move
+
+error: aborting due to 9 previous errors
+
+Some errors have detailed explanations: E0382, E0499, E0500, E0502, E0503, E0505.
+For more information about an error, try `rustc --explain E0382`.