rust/src/test/ui/closure_context/issue-26046-fn-once.stderr

15 lines
618 B
Plaintext
Raw Normal View History

2017-06-05 05:35:17 -05:00
error[E0525]: expected a closure that implements the `Fn` trait, but this closure only implements `FnOnce`
2018-12-25 09:56:47 -06:00
--> $DIR/issue-26046-fn-once.rs:4:19
2017-06-05 05:35:17 -05:00
|
2018-02-22 18:42:32 -06:00
LL | let closure = move || { //~ ERROR expected a closure
| ^^^^^^^ this closure implements `FnOnce`, not `Fn`
2018-02-22 18:42:32 -06:00
LL | vec
| --- closure is `FnOnce` because it moves the variable `vec` out of its environment
...
2018-02-22 18:42:32 -06:00
LL | Box::new(closure)
| ----------------- the requirement to implement `Fn` derives from here
2017-06-05 05:35:17 -05:00
error: aborting due to previous error
2017-06-05 05:35:17 -05:00
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0525`.