summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/borrowck-multiple-captures.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/ui/borrowck/borrowck-multiple-captures.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/borrowck/borrowck-multiple-captures.rs')
-rw-r--r--tests/ui/borrowck/borrowck-multiple-captures.rs61
1 files changed, 61 insertions, 0 deletions
diff --git a/tests/ui/borrowck/borrowck-multiple-captures.rs b/tests/ui/borrowck/borrowck-multiple-captures.rs
new file mode 100644
index 000000000..57b3819ac
--- /dev/null
+++ b/tests/ui/borrowck/borrowck-multiple-captures.rs
@@ -0,0 +1,61 @@
+use std::thread;
+
+
+fn borrow<T>(_: &T) { }
+
+
+fn different_vars_after_borrows() {
+ let x1: Box<_> = Box::new(1);
+ let p1 = &x1;
+ let x2: Box<_> = Box::new(2);
+ let p2 = &x2;
+ thread::spawn(move|| {
+ //~^ ERROR cannot move out of `x1` because it is borrowed
+ //~| ERROR cannot move out of `x2` because it is borrowed
+ drop(x1);
+ drop(x2);
+ });
+ borrow(&*p1);
+ borrow(&*p2);
+}
+
+fn different_vars_after_moves() {
+ let x1: Box<_> = Box::new(1);
+ drop(x1);
+ let x2: Box<_> = Box::new(2);
+ drop(x2);
+ thread::spawn(move|| {
+ //~^ ERROR use of moved value: `x1`
+ //~| ERROR use of moved value: `x2`
+ drop(x1);
+ drop(x2);
+ });
+}
+
+fn same_var_after_borrow() {
+ let x: Box<_> = Box::new(1);
+ let p = &x;
+ thread::spawn(move|| {
+ //~^ ERROR cannot move out of `x` because it is borrowed
+ drop(x);
+ drop(x); //~ ERROR use of moved value: `x`
+ });
+ borrow(&*p);
+}
+
+fn same_var_after_move() {
+ let x: Box<_> = Box::new(1);
+ drop(x);
+ thread::spawn(move|| {
+ //~^ ERROR use of moved value: `x`
+ drop(x);
+ drop(x); //~ ERROR use of moved value: `x`
+ });
+}
+
+fn main() {
+ different_vars_after_borrows();
+ different_vars_after_moves();
+ same_var_after_borrow();
+ same_var_after_move();
+}