2019-05-05 11:02:32 +00:00
|
|
|
error[E0507]: cannot move out of `x`, a captured variable in an `Fn` closure
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/unboxed-closure-illegal-move.rs:15:31
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let x = Box::new(0);
|
|
|
|
| - captured outer variable
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let f = to_fn(|| drop(x));
|
2022-06-27 05:45:35 +00:00
|
|
|
| -- ^ move occurs because `x` has type `Box<i32>`, which does not implement the `Copy` trait
|
|
|
|
| |
|
2021-07-25 18:05:41 +00:00
|
|
|
| captured by this `Fn` closure
|
2024-03-13 03:41:41 +00:00
|
|
|
|
|
|
|
|
help: consider cloning the value if the performance cost is acceptable
|
|
|
|
|
|
|
|
|
LL | let f = to_fn(|| drop(x.clone()));
|
|
|
|
| ++++++++
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2019-05-05 11:02:32 +00:00
|
|
|
error[E0507]: cannot move out of `x`, a captured variable in an `FnMut` closure
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/unboxed-closure-illegal-move.rs:19:35
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let x = Box::new(0);
|
|
|
|
| - captured outer variable
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let f = to_fn_mut(|| drop(x));
|
2022-06-27 05:45:35 +00:00
|
|
|
| -- ^ move occurs because `x` has type `Box<i32>`, which does not implement the `Copy` trait
|
|
|
|
| |
|
2021-07-25 18:05:41 +00:00
|
|
|
| captured by this `FnMut` closure
|
2024-03-13 03:41:41 +00:00
|
|
|
|
|
|
|
|
help: consider cloning the value if the performance cost is acceptable
|
|
|
|
|
|
|
|
|
LL | let f = to_fn_mut(|| drop(x.clone()));
|
|
|
|
| ++++++++
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2019-05-05 11:02:32 +00:00
|
|
|
error[E0507]: cannot move out of `x`, a captured variable in an `Fn` closure
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/unboxed-closure-illegal-move.rs:28:36
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let x = Box::new(0);
|
|
|
|
| - captured outer variable
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let f = to_fn(move || drop(x));
|
2022-06-27 05:45:35 +00:00
|
|
|
| ------- ^ move occurs because `x` has type `Box<i32>`, which does not implement the `Copy` trait
|
|
|
|
| |
|
2021-07-25 18:05:41 +00:00
|
|
|
| captured by this `Fn` closure
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2019-05-05 11:02:32 +00:00
|
|
|
error[E0507]: cannot move out of `x`, a captured variable in an `FnMut` closure
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/unboxed-closure-illegal-move.rs:32:40
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let x = Box::new(0);
|
|
|
|
| - captured outer variable
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let f = to_fn_mut(move || drop(x));
|
2022-06-27 05:45:35 +00:00
|
|
|
| ------- ^ move occurs because `x` has type `Box<i32>`, which does not implement the `Copy` trait
|
|
|
|
| |
|
2021-07-25 18:05:41 +00:00
|
|
|
| captured by this `FnMut` closure
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0507`.
|