rust/tests/ui/unboxed-closures/unboxed-closures-failed-recursive-fn-2.stderr

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

18 lines
586 B
Plaintext
Raw Normal View History

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
| ^^^^^^^^^^^^
...
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`.