2015-01-07 20:53:58 -06:00
|
|
|
#![feature(box_syntax)]
|
|
|
|
|
2015-02-17 17:10:25 -06:00
|
|
|
use std::thread;
|
2014-06-06 13:59:33 -05:00
|
|
|
|
|
|
|
fn borrow<T>(_: &T) { }
|
|
|
|
|
|
|
|
fn different_vars_after_borrows() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let x1: Box<_> = box 1;
|
2014-06-06 13:59:33 -05:00
|
|
|
let p1 = &x1;
|
2015-02-17 14:41:32 -06:00
|
|
|
let x2: Box<_> = box 2;
|
2014-06-06 13:59:33 -05:00
|
|
|
let p2 = &x2;
|
2015-02-17 17:10:25 -06:00
|
|
|
thread::spawn(move|| {
|
2014-06-06 13:59:33 -05:00
|
|
|
drop(x1); //~ ERROR cannot move `x1` into closure because it is borrowed
|
|
|
|
drop(x2); //~ ERROR cannot move `x2` into closure because it is borrowed
|
|
|
|
});
|
|
|
|
borrow(&*p1);
|
|
|
|
borrow(&*p2);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn different_vars_after_moves() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let x1: Box<_> = box 1;
|
2014-06-06 13:59:33 -05:00
|
|
|
drop(x1);
|
2015-02-17 14:41:32 -06:00
|
|
|
let x2: Box<_> = box 2;
|
2014-06-06 13:59:33 -05:00
|
|
|
drop(x2);
|
2015-02-17 17:10:25 -06:00
|
|
|
thread::spawn(move|| {
|
2014-06-06 13:59:33 -05:00
|
|
|
drop(x1); //~ ERROR capture of moved value: `x1`
|
|
|
|
drop(x2); //~ ERROR capture of moved value: `x2`
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
fn same_var_after_borrow() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let x: Box<_> = box 1;
|
2014-06-06 13:59:33 -05:00
|
|
|
let p = &x;
|
2015-02-17 17:10:25 -06:00
|
|
|
thread::spawn(move|| {
|
2014-06-06 13:59:33 -05:00
|
|
|
drop(x); //~ ERROR cannot move `x` into closure because it is borrowed
|
|
|
|
drop(x); //~ ERROR use of moved value: `x`
|
|
|
|
});
|
|
|
|
borrow(&*p);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn same_var_after_move() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let x: Box<_> = box 1;
|
2014-06-06 13:59:33 -05:00
|
|
|
drop(x);
|
2015-02-17 17:10:25 -06:00
|
|
|
thread::spawn(move|| {
|
2014-06-06 13:59:33 -05:00
|
|
|
drop(x); //~ ERROR capture of moved value: `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();
|
|
|
|
}
|