]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-46112.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-46112.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-46112.rs:19:21
3    |
4 LL | fn main() { test(Ok(())); }
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
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0308`.