]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-59756.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / issues / issue-59756.stderr
CommitLineData
48663c56
XL
1error[E0308]: try expression alternatives have incompatible types
2 --> $DIR/issue-59756.rs:13:5
3 |
4LL | foo()?
60c5eb7d
XL
5 | ^^^^^^ expected enum `std::result::Result`, found struct `A`
6 |
7 = note: expected enum `std::result::Result<A, B>`
8 found struct `A`
9help: try removing this `?`
10 |
11LL | foo()
12 | --
13help: try using a variant of the expected enum
14 |
15LL | Ok(foo()?)
48663c56 16 |
48663c56
XL
17
18error: aborting due to previous error
19
20For more information about this error, try `rustc --explain E0308`.