]> git.lizzy.rs Git - rust.git/blob - src/test/ui/closure_context/issue-26046-fn-once.stderr
Rollup merge of #93813 - xldenis:public-mir-passes, r=wesleywiser
[rust.git] / src / test / ui / closure_context / issue-26046-fn-once.stderr
1 error[E0525]: expected a closure that implements the `Fn` trait, but this closure only implements `FnOnce`
2   --> $DIR/issue-26046-fn-once.rs:4:19
3    |
4 LL |     let closure = move || {
5    |                   ^^^^^^^ this closure implements `FnOnce`, not `Fn`
6 LL |         vec
7    |         --- closure is `FnOnce` because it moves the variable `vec` out of its environment
8 ...
9 LL |     Box::new(closure)
10    |     ----------------- the requirement to implement `Fn` derives from here
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0525`.