]> git.lizzy.rs Git - rust.git/blob - tests/ui/typeck/issue-46112.stderr
Rollup merge of #106323 - starkat99:stabilize-f16c_target_feature, r=petrochenkov
[rust.git] / tests / ui / typeck / issue-46112.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-46112.rs:9:21
3    |
4 LL | fn main() { test(Ok(())); }
5    |                  -- ^^ expected enum `Option`, found `()`
6    |                  |
7    |                  arguments to this enum variant are incorrect
8    |
9    = note:   expected enum `Option<()>`
10            found unit type `()`
11 note: tuple variant defined here
12   --> $SRC_DIR/core/src/result.rs:LL:COL
13 help: try wrapping the expression in `Some`
14    |
15 LL | fn main() { test(Ok(Some(()))); }
16    |                     +++++  +
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0308`.