rust/tests/ui/closure_context/issue-26046-fn-mut.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
688 B
Plaintext
Raw Normal View History

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