2017-06-06 03:17:06 -05:00
|
|
|
error[E0525]: expected a closure that implements the `Fn` trait, but this closure only implements `FnMut`
|
|
|
|
--> $DIR/issue-26046-fn-mut.rs:14:19
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let closure = || { //~ ERROR expected a closure that
|
2017-12-18 00:22:24 -06:00
|
|
|
| ^^ this closure implements `FnMut`, not `Fn`
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | num += 1;
|
2017-12-18 00:22:24 -06:00
|
|
|
| --- closure is `FnMut` because it mutates the variable `num` here
|
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | Box::new(closure)
|
2017-12-18 00:22:24 -06:00
|
|
|
| ----------------- the requirement to implement `Fn` derives from here
|
2017-06-06 03:17:06 -05:00
|
|
|
|
2017-07-02 08:09:09 -05:00
|
|
|
error: aborting due to previous error
|
2017-06-06 03:17:06 -05:00
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0525`.
|