]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issue-46112.stderr
New upstream version 1.26.0+dfsg1
[rustc.git] / src / test / ui / issue-46112.stderr
CommitLineData
abe05a73
XL
1error[E0308]: mismatched types
2 --> $DIR/issue-46112.rs:19:21
3 |
0531ce1d 4LL | fn main() { test(Ok(())); }
abe05a73
XL
5 | ^^
6 | |
7 | expected enum `std::option::Option`, found ()
8 | help: try using a variant of the expected type: `Some(())`
9 |
10 = note: expected type `std::option::Option<()>`
11 found type `()`
12
13error: aborting due to previous error
14
0531ce1d 15For more information about this error, try `rustc --explain E0308`.