]> git.lizzy.rs Git - rust.git/blob - tests/ui/closure_context/issue-26046-fn-mut.stderr
Rollup merge of #106244 - atouchet:readme3, r=workingjubilee
[rust.git] / tests / ui / closure_context / issue-26046-fn-mut.stderr
1 error[E0525]: expected a closure that implements the `Fn` trait, but this closure only implements `FnMut`
2   --> $DIR/issue-26046-fn-mut.rs:4:19
3    |
4 LL |     let closure = || {
5    |                   ^^ this closure implements `FnMut`, not `Fn`
6 LL |         num += 1;
7    |         --- closure is `FnMut` because it mutates the variable `num` here
8 ...
9 LL |     Box::new(closure)
10    |     ----------------- the requirement to implement `Fn` derives from here
11    |
12    = note: required for the cast from `[closure@$DIR/issue-26046-fn-mut.rs:4:19: 4:21]` to the object type `dyn Fn()`
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0525`.