]> git.lizzy.rs Git - rust.git/blob - src/test/ui/inference/cannot-infer-partial-try-return.stderr
Rollup merge of #82259 - osa1:issue82156, r=petrochenkov
[rust.git] / src / test / ui / inference / cannot-infer-partial-try-return.stderr
1 error[E0282]: type annotations needed for the closure `fn() -> Result<(), QualifiedError<_>>`
2   --> $DIR/cannot-infer-partial-try-return.rs:19:9
3    |
4 LL |         infallible()?;
5    |         ^^^^^^^^^^^^^ cannot infer type of error for `?` operator
6    |
7    = note: `?` implicitly converts the error value into `QualifiedError<_>` using its implementation of `From<Infallible>`
8 help: give this closure an explicit return type without `_` placeholders
9    |
10 LL |     let x = || -> Result<(), QualifiedError<_>> {
11    |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0282`.