rust/tests/ui/inference/cannot-infer-closure-circular.stderr

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

15 lines
460 B
Plaintext
Raw Normal View History

2021-01-28 16:01:36 +00:00
error[E0282]: type annotations needed for `Result<(), E>`
2022-06-20 01:21:01 +00:00
--> $DIR/cannot-infer-closure-circular.rs:7:14
|
2022-06-20 01:21:01 +00:00
LL | let x = |r| {
| ^
2022-02-14 12:25:26 +00:00
|
2022-06-20 01:21:01 +00:00
help: consider giving this closure parameter an explicit type, where the type for type parameter `E` is specified
2022-02-14 12:25:26 +00:00
|
2022-06-20 01:21:01 +00:00
LL | let x = |r: Result<(), E>| {
| +++++++++++++++
error: aborting due to previous error
For more information about this error, try `rustc --explain E0282`.