2014-07-30 15:36:21 -05:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-01-07 20:53:58 -06:00
|
|
|
#![feature(box_syntax)]
|
|
|
|
|
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;
|
2014-09-12 21:03:34 -05:00
|
|
|
let _y = a.y; //~ ERROR use of moved
|
|
|
|
//~^^ NOTE `a` moved here (through moving `a.x`)
|
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;
|
2014-09-12 21:03:34 -05:00
|
|
|
let _y = a.y; //~ ERROR use of moved
|
|
|
|
//~^^ NOTE `a` moved here (through moving `a.x`)
|
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;
|
2014-09-12 21:03:34 -05:00
|
|
|
let _y = &a.y; //~ ERROR use of moved
|
|
|
|
//~^^ NOTE `a` moved here (through moving `a.x`)
|
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-03-14 22:36:43 -05:00
|
|
|
//~^ NOTE borrow of `a.x` occurs here
|
2014-07-30 15:36:21 -05:00
|
|
|
let _y = a.y; //~ ERROR cannot move
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2016-03-14 22:36:43 -05:00
|
|
|
//~^ NOTE borrow of `a.x` occurs here
|
2014-07-30 15:36:21 -05:00
|
|
|
let _y = a.y; //~ ERROR cannot use
|
|
|
|
}
|
|
|
|
|
|
|
|
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-03-14 22:36:43 -05:00
|
|
|
//~^ NOTE borrow of `a.x` occurs here
|
2014-07-30 15:36:21 -05:00
|
|
|
let _y = a.y; //~ ERROR cannot move
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2016-03-14 22:36:43 -05:00
|
|
|
//~^ NOTE previous borrow of `a` occurs here (through borrowing `a.x`);
|
2014-07-30 15:36:21 -05:00
|
|
|
let _y = &a.y; //~ ERROR cannot borrow
|
|
|
|
}
|
2016-03-14 22:36:43 -05:00
|
|
|
//~^ NOTE previous borrow ends here
|
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;
|
2016-03-14 22:36:43 -05:00
|
|
|
//~^ NOTE previous borrow of `a` occurs here (through borrowing `a.x`)
|
2014-07-30 15:36:21 -05:00
|
|
|
let _y = &mut a.y; //~ ERROR cannot borrow
|
|
|
|
}
|
2016-03-14 22:36:43 -05:00
|
|
|
//~^ NOTE previous borrow ends here
|
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-03-14 22:36:43 -05:00
|
|
|
//~^ NOTE `a.x.x` moved here because it has type `Box<isize>`, which is moved by default
|
2014-09-12 21:03:34 -05:00
|
|
|
let _y = a.y; //~ ERROR use of collaterally moved
|
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-03-14 22:36:43 -05:00
|
|
|
//~^ NOTE `a.x.x` moved here because it has type `Box<isize>`, which is moved by default
|
2014-09-12 21:03:34 -05:00
|
|
|
let _y = a.y; //~ ERROR use of collaterally moved
|
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-03-14 22:36:43 -05:00
|
|
|
//~^ NOTE `a.x.x` moved here because it has type `Box<isize>`, which is moved by default
|
2014-09-12 21:03:34 -05:00
|
|
|
let _y = &a.y; //~ ERROR use of collaterally moved
|
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-03-14 22:36:43 -05:00
|
|
|
//~^ NOTE borrow of `a.x.x` occurs here
|
2014-07-30 15:36:21 -05:00
|
|
|
let _y = a.y; //~ ERROR cannot move
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2016-03-14 22:36:43 -05:00
|
|
|
//~^ NOTE borrow of `a.x.x` occurs here
|
2014-07-30 15:36:21 -05:00
|
|
|
let _y = a.y; //~ ERROR cannot use
|
|
|
|
}
|
|
|
|
|
|
|
|
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-03-14 22:36:43 -05:00
|
|
|
//~^ NOTE borrow of `a.x.x` occurs here
|
2014-07-30 15:36:21 -05:00
|
|
|
let _y = a.y; //~ ERROR cannot move
|
|
|
|
}
|
|
|
|
|
|
|
|
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-03-14 22:36:43 -05:00
|
|
|
//~^ NOTE previous borrow of `a.x.x` occurs here; the mutable borrow prevents
|
2014-07-30 15:36:21 -05:00
|
|
|
let _y = &a.y; //~ ERROR cannot borrow
|
|
|
|
}
|
2016-03-14 22:36:43 -05:00
|
|
|
//~^ NOTE previous borrow ends here
|
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-03-14 22:36:43 -05:00
|
|
|
//~^ NOTE previous borrow of `a.x.x` occurs here; the immutable borrow prevents
|
2014-07-30 15:36:21 -05:00
|
|
|
let _y = &mut a.y; //~ ERROR cannot borrow
|
|
|
|
}
|
2016-03-14 22:36:43 -05:00
|
|
|
//~^ NOTE previous borrow ends here
|
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();
|
|
|
|
}
|