]> git.lizzy.rs Git - rust.git/blob - tests/ui/closure_context/issue-26046-fn-once.stderr
Auto merge of #106646 - Amanieu:ilp32-object, r=Mark-Simulacrum
[rust.git] / tests / 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    = note: required for the cast from `[closure@$DIR/issue-26046-fn-once.rs:4:19: 4:26]` to the object type `dyn Fn() -> Vec<u8>`
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0525`.