2014-05-05 20:56:44 -05:00
|
|
|
fn main() {
|
2021-08-24 19:39:40 -05:00
|
|
|
|
|
|
|
let y: Box<isize> = 42.into();
|
2015-01-08 04:54:35 -06:00
|
|
|
let mut x: Box<isize>;
|
2021-08-24 19:39:40 -05:00
|
|
|
|
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(); } } }
|
2019-06-21 18:30:24 -05:00
|
|
|
//~^ WARN denote infinite loops with
|
|
|
|
//~| WARN denote infinite loops with
|
|
|
|
//~| WARN denote infinite loops with
|
2012-03-10 22:38:03 -06:00
|
|
|
}
|
2011-08-19 17:16:48 -05:00
|
|
|
}
|