2020-09-02 07:40:56 +00:00
|
|
|
error[E0282]: type annotations needed for `Option<T>`
|
2022-02-14 12:25:26 +00:00
|
|
|
--> $DIR/unboxed-closures-failed-recursive-fn-2.rs:8:9
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let mut closure0 = None;
|
2022-02-14 12:25:26 +00:00
|
|
|
| ^^^^^^^^^^^^
|
2022-06-25 16:18:25 +00:00
|
|
|
...
|
|
|
|
LL | return c();
|
|
|
|
| --- type must be known at this point
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2022-02-14 12:25:26 +00:00
|
|
|
help: consider giving `closure0` an explicit type, where the placeholders `_` are specified
|
|
|
|
|
|
|
|
|
LL | let mut closure0: Option<T> = None;
|
|
|
|
| +++++++++++
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0282`.
|