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