]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issue-59756.stderr
Suggest removing `?` to resolve type errors.
[rust.git] / src / test / ui / issue-59756.stderr
1 error[E0308]: try expression alternatives have incompatible types
2   --> $DIR/issue-59756.rs:13:5
3    |
4 LL |     foo()?
5    |     ^^^^^-
6    |     |    |
7    |     |    help: try removing this `?`
8    |     expected enum `std::result::Result`, found struct `A`
9    |
10    = note: expected type `std::result::Result<A, B>`
11               found type `A`
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0308`.