2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 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-05-05 20:56:44 -05:00
|
|
|
fn main() {
|
2015-01-08 04:54:35 -06:00
|
|
|
let y: Box<isize> = box 42;
|
|
|
|
let mut x: Box<isize>;
|
2012-03-10 22:38:03 -06:00
|
|
|
loop {
|
2014-10-14 20:07:11 -05:00
|
|
|
println!("{}", y); //~ ERROR use of moved value: `y`
|
2013-07-02 14:47:32 -05:00
|
|
|
while true { while true { while true { x = y; x.clone(); } } }
|
2013-01-11 14:47:14 -06:00
|
|
|
//~^ ERROR use of moved value: `y`
|
2012-03-10 22:38:03 -06:00
|
|
|
}
|
2011-08-19 17:16:48 -05:00
|
|
|
}
|