]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-46112.stderr
Rollup merge of #86479 - exphp-forks:float-debug-exponential, r=yaahc
[rust.git] / src / test / ui / issues / issue-46112.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-46112.rs:9:21
3    |
4 LL | fn main() { test(Ok(())); }
5    |                     ^^
6    |                     |
7    |                     expected enum `Option`, found `()`
8    |                     help: try using a variant of the expected enum: `Some(())`
9    |
10    = note:   expected enum `Option<()>`
11            found unit type `()`
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0308`.