blob: da639a837aa5096db8da86093fc5d42fd33ff716 [file] [log] [blame]
error[E0507]: cannot move out of captured variable in an `Fn` closure
--> $DIR/borrowck-in-static.rs:5:17
|
LL | let x = Box::new(0);
| - captured outer variable
LL | Box::new(|| x)
| ^ cannot move out of captured variable in an `Fn` closure
error: aborting due to previous error
For more information about this error, try `rustc --explain E0507`.