2021-01-28 10:01:36 -06:00
|
|
|
error[E0282]: type annotations needed for `Result<(), E>`
|
2022-06-19 20:21:01 -05:00
|
|
|
--> $DIR/cannot-infer-closure-circular.rs:7:14
|
2020-12-28 23:10:13 -06:00
|
|
|
|
|
2022-06-19 20:21:01 -05:00
|
|
|
LL | let x = |r| {
|
|
|
|
| ^
|
2023-08-14 08:09:53 -05:00
|
|
|
LL | let v = r?;
|
|
|
|
LL | Ok(v)
|
|
|
|
| ----- type must be known at this point
|
2022-02-14 06:25:26 -06:00
|
|
|
|
|
2022-06-19 20:21:01 -05:00
|
|
|
help: consider giving this closure parameter an explicit type, where the type for type parameter `E` is specified
|
2022-02-14 06:25:26 -06:00
|
|
|
|
|
2022-06-19 20:21:01 -05:00
|
|
|
LL | let x = |r: Result<(), E>| {
|
|
|
|
| +++++++++++++++
|
2020-12-28 23:10:13 -06:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2020-12-28 23:10:13 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0282`.
|