2017-04-24 22:25:30 -05:00
|
|
|
error[E0507]: cannot move out of captured outer variable in an `Fn` closure
|
|
|
|
--> $DIR/borrowck-in-static.rs:15:17
|
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
14 | let x = Box::new(0);
|
2017-04-24 22:25:30 -05:00
|
|
|
| - captured outer variable
|
|
|
|
15 | Box::new(|| x) //~ ERROR cannot move out of captured outer variable
|
|
|
|
| ^ cannot move out of captured outer variable in an `Fn` closure
|
|
|
|
|
2017-07-02 05:49:30 -05:00
|
|
|
error: aborting due to previous error
|
2017-04-24 22:25:30 -05:00
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0507"
|