2018-11-08 17:21:46 -06:00
|
|
|
// This test is an artifact of the old policy that `Box<T>` should not
|
|
|
|
// be treated specially by the AST-borrowck.
|
2014-07-30 15:36:21 -05:00
|
|
|
//
|
2018-11-08 17:21:46 -06:00
|
|
|
// NLL goes back to treating `Box<T>` specially (namely, knowing that
|
|
|
|
// it uniquely owns the data it holds). See rust-lang/rfcs#130.
|
2014-07-30 15:36:21 -05:00
|
|
|
|
2018-11-08 17:21:46 -06:00
|
|
|
// revisions: ast mir
|
|
|
|
//[ast] compile-flags: -Z borrowck=ast
|
|
|
|
//[mir] compile-flags: -Z borrowck=mir
|
|
|
|
// ignore-compare-mode-nll
|
2018-09-03 15:50:03 -05:00
|
|
|
#![feature(box_syntax, rustc_attrs)]
|
2015-01-07 20:53:58 -06:00
|
|
|
|
2014-07-30 15:36:21 -05:00
|
|
|
struct A {
|
2015-01-08 04:54:35 -06:00
|
|
|
x: Box<isize>,
|
|
|
|
y: isize,
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
struct B {
|
2015-01-08 04:54:35 -06:00
|
|
|
x: Box<isize>,
|
|
|
|
y: Box<isize>,
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
struct C {
|
|
|
|
x: Box<A>,
|
2015-01-08 04:54:35 -06:00
|
|
|
y: isize,
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
struct D {
|
|
|
|
x: Box<A>,
|
2015-01-08 04:54:35 -06:00
|
|
|
y: Box<isize>,
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn copy_after_move() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let a: Box<_> = box A { x: box 0, y: 1 };
|
2014-07-30 15:36:21 -05:00
|
|
|
let _x = a.x;
|
2016-04-20 13:42:13 -05:00
|
|
|
//~^ value moved here
|
2014-09-12 21:03:34 -05:00
|
|
|
let _y = a.y; //~ ERROR use of moved
|
2017-01-21 08:40:31 -06:00
|
|
|
//~^ move occurs because `a.x` has type `std::boxed::Box<isize>`
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| value used here after move
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn move_after_move() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let a: Box<_> = box B { x: box 0, y: box 1 };
|
2014-07-30 15:36:21 -05:00
|
|
|
let _x = a.x;
|
2016-04-20 13:42:13 -05:00
|
|
|
//~^ value moved here
|
2014-09-12 21:03:34 -05:00
|
|
|
let _y = a.y; //~ ERROR use of moved
|
2017-01-21 08:40:31 -06:00
|
|
|
//~^ move occurs because `a.x` has type `std::boxed::Box<isize>`
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| value used here after move
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn borrow_after_move() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let a: Box<_> = box A { x: box 0, y: 1 };
|
2014-07-30 15:36:21 -05:00
|
|
|
let _x = a.x;
|
2016-04-20 13:42:13 -05:00
|
|
|
//~^ value moved here
|
2014-09-12 21:03:34 -05:00
|
|
|
let _y = &a.y; //~ ERROR use of moved
|
2017-01-21 08:40:31 -06:00
|
|
|
//~^ move occurs because `a.x` has type `std::boxed::Box<isize>`
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| value used here after move
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn move_after_borrow() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let a: Box<_> = box B { x: box 0, y: box 1 };
|
2014-07-30 15:36:21 -05:00
|
|
|
let _x = &a.x;
|
2016-05-12 18:39:09 -05:00
|
|
|
let _y = a.y;
|
|
|
|
//~^ ERROR cannot move
|
|
|
|
//~| move out of
|
2018-11-08 17:10:19 -06:00
|
|
|
use_imm(_x);
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
|
|
|
fn copy_after_mut_borrow() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let mut a: Box<_> = box A { x: box 0, y: 1 };
|
2014-07-30 15:36:21 -05:00
|
|
|
let _x = &mut a.x;
|
|
|
|
let _y = a.y; //~ ERROR cannot use
|
2018-11-08 17:10:19 -06:00
|
|
|
use_mut(_x);
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
|
|
|
fn move_after_mut_borrow() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let mut a: Box<_> = box B { x: box 0, y: box 1 };
|
2014-07-30 15:36:21 -05:00
|
|
|
let _x = &mut a.x;
|
2016-05-12 18:39:09 -05:00
|
|
|
let _y = a.y;
|
|
|
|
//~^ ERROR cannot move
|
|
|
|
//~| move out of
|
2018-11-08 17:10:19 -06:00
|
|
|
use_mut(_x);
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
|
|
|
fn borrow_after_mut_borrow() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let mut a: Box<_> = box A { x: box 0, y: 1 };
|
2014-07-30 15:36:21 -05:00
|
|
|
let _x = &mut a.x;
|
|
|
|
let _y = &a.y; //~ ERROR cannot borrow
|
2016-04-20 13:42:13 -05:00
|
|
|
//~^ immutable borrow occurs here (via `a.y`)
|
2018-11-08 17:10:19 -06:00
|
|
|
use_mut(_x);
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
|
|
|
fn mut_borrow_after_borrow() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let mut a: Box<_> = box A { x: box 0, y: 1 };
|
2014-07-30 15:36:21 -05:00
|
|
|
let _x = &a.x;
|
|
|
|
let _y = &mut a.y; //~ ERROR cannot borrow
|
2016-04-20 13:42:13 -05:00
|
|
|
//~^ mutable borrow occurs here (via `a.y`)
|
2018-11-08 17:10:19 -06:00
|
|
|
use_imm(_x);
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
|
|
|
fn copy_after_move_nested() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let a: Box<_> = box C { x: box A { x: box 0, y: 1 }, y: 2 };
|
2014-07-30 15:36:21 -05:00
|
|
|
let _x = a.x.x;
|
2016-04-20 13:42:13 -05:00
|
|
|
//~^ value moved here
|
2014-09-12 21:03:34 -05:00
|
|
|
let _y = a.y; //~ ERROR use of collaterally moved
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| value used here after move
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn move_after_move_nested() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let a: Box<_> = box D { x: box A { x: box 0, y: 1 }, y: box 2 };
|
2014-07-30 15:36:21 -05:00
|
|
|
let _x = a.x.x;
|
2016-04-20 13:42:13 -05:00
|
|
|
//~^ value moved here
|
2014-09-12 21:03:34 -05:00
|
|
|
let _y = a.y; //~ ERROR use of collaterally moved
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| value used here after move
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn borrow_after_move_nested() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let a: Box<_> = box C { x: box A { x: box 0, y: 1 }, y: 2 };
|
2014-07-30 15:36:21 -05:00
|
|
|
let _x = a.x.x;
|
2016-04-20 13:42:13 -05:00
|
|
|
//~^ value moved here
|
2014-09-12 21:03:34 -05:00
|
|
|
let _y = &a.y; //~ ERROR use of collaterally moved
|
2016-04-20 13:42:13 -05:00
|
|
|
//~| value used here after move
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn move_after_borrow_nested() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let a: Box<_> = box D { x: box A { x: box 0, y: 1 }, y: box 2 };
|
2014-07-30 15:36:21 -05:00
|
|
|
let _x = &a.x.x;
|
2016-04-20 13:42:13 -05:00
|
|
|
//~^ borrow of `a.x.x` occurs here
|
2016-05-12 18:39:09 -05:00
|
|
|
let _y = a.y;
|
|
|
|
//~^ ERROR cannot move
|
|
|
|
//~| move out of
|
2018-11-08 17:10:19 -06:00
|
|
|
use_imm(_x);
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
|
|
|
fn copy_after_mut_borrow_nested() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let mut a: Box<_> = box C { x: box A { x: box 0, y: 1 }, y: 2 };
|
2014-07-30 15:36:21 -05:00
|
|
|
let _x = &mut a.x.x;
|
|
|
|
let _y = a.y; //~ ERROR cannot use
|
2018-11-08 17:10:19 -06:00
|
|
|
use_mut(_x);
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
|
|
|
fn move_after_mut_borrow_nested() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let mut a: Box<_> = box D { x: box A { x: box 0, y: 1 }, y: box 2 };
|
2014-07-30 15:36:21 -05:00
|
|
|
let _x = &mut a.x.x;
|
2016-05-12 18:39:09 -05:00
|
|
|
let _y = a.y;
|
|
|
|
//~^ ERROR cannot move
|
|
|
|
//~| move out of
|
2018-11-08 17:10:19 -06:00
|
|
|
use_mut(_x);
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
|
|
|
fn borrow_after_mut_borrow_nested() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let mut a: Box<_> = box C { x: box A { x: box 0, y: 1 }, y: 2 };
|
2014-07-30 15:36:21 -05:00
|
|
|
let _x = &mut a.x.x;
|
2016-04-20 13:42:13 -05:00
|
|
|
//~^ mutable borrow occurs here
|
2014-07-30 15:36:21 -05:00
|
|
|
let _y = &a.y; //~ ERROR cannot borrow
|
2016-04-20 13:42:13 -05:00
|
|
|
//~^ immutable borrow occurs here
|
2018-11-08 17:10:19 -06:00
|
|
|
use_mut(_x);
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
|
|
|
fn mut_borrow_after_borrow_nested() {
|
2015-02-17 14:41:32 -06:00
|
|
|
let mut a: Box<_> = box C { x: box A { x: box 0, y: 1 }, y: 2 };
|
2014-07-30 15:36:21 -05:00
|
|
|
let _x = &a.x.x;
|
2016-04-20 13:42:13 -05:00
|
|
|
//~^ immutable borrow occurs here
|
2014-07-30 15:36:21 -05:00
|
|
|
let _y = &mut a.y; //~ ERROR cannot borrow
|
2016-04-20 13:42:13 -05:00
|
|
|
//~^ mutable borrow occurs here
|
2018-11-08 17:10:19 -06:00
|
|
|
use_imm(_x);
|
2014-07-30 15:36:21 -05:00
|
|
|
}
|
2018-09-03 15:50:03 -05:00
|
|
|
#[rustc_error]
|
2014-07-30 15:36:21 -05:00
|
|
|
fn main() {
|
|
|
|
copy_after_move();
|
|
|
|
move_after_move();
|
|
|
|
borrow_after_move();
|
|
|
|
|
|
|
|
move_after_borrow();
|
|
|
|
|
|
|
|
copy_after_mut_borrow();
|
|
|
|
move_after_mut_borrow();
|
|
|
|
borrow_after_mut_borrow();
|
|
|
|
mut_borrow_after_borrow();
|
|
|
|
|
|
|
|
copy_after_move_nested();
|
|
|
|
move_after_move_nested();
|
|
|
|
borrow_after_move_nested();
|
|
|
|
|
|
|
|
move_after_borrow_nested();
|
|
|
|
|
|
|
|
copy_after_mut_borrow_nested();
|
|
|
|
move_after_mut_borrow_nested();
|
|
|
|
borrow_after_mut_borrow_nested();
|
|
|
|
mut_borrow_after_borrow_nested();
|
|
|
|
}
|
2018-11-08 17:10:19 -06:00
|
|
|
|
|
|
|
fn use_mut<T>(_: &mut T) { }
|
|
|
|
fn use_imm<T>(_: &T) { }
|