2017-06-06 08:17:06 +00:00
|
|
|
error[E0525]: expected a closure that implements the `Fn` trait, but this closure only implements `FnMut`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-26046-fn-mut.rs:4:19
|
2017-06-06 08:17:06 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let closure = || {
|
2017-12-18 06:22:24 +00:00
|
|
|
| ^^ this closure implements `FnMut`, not `Fn`
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | num += 1;
|
2017-12-18 06:22:24 +00:00
|
|
|
| --- closure is `FnMut` because it mutates the variable `num` here
|
|
|
|
...
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | Box::new(closure)
|
2017-12-18 06:22:24 +00:00
|
|
|
| ----------------- the requirement to implement `Fn` derives from here
|
2022-08-18 12:22:07 +00:00
|
|
|
|
|
2023-09-09 06:36:50 +00:00
|
|
|
= note: required for the cast from `Box<{closure@$DIR/issue-26046-fn-mut.rs:4:19: 4:21}>` to `Box<(dyn Fn() + 'static)>`
|
2017-06-06 08:17:06 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2017-06-06 08:17:06 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0525`.
|