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 {
|
2019-04-22 02:40:08 -05:00
|
|
|
println!("{}", y); //~ ERROR borrow of moved value: `y`
|
2013-07-02 14:47:32 -05:00
|
|
|
while true { while true { while true { x = y; x.clone(); } } }
|
2012-03-10 22:38:03 -06:00
|
|
|
}
|
2011-08-19 17:16:48 -05:00
|
|
|
}
|