]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-11844.stderr
4459b64aa8f06eb65e9404deb345b897483c7ce2
[rust.git] / src / test / ui / issues / issue-11844.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-11844.rs:6:9
3    |
4 LL |     match a {
5    |           - this match expression evaluates to `std::option::Option<std::boxed::Box<{integer}>>`
6 LL |         Ok(a) => //~ ERROR: mismatched types
7    |         ^^^^^ expected enum `std::option::Option`, found enum `std::result::Result`
8    |
9    = note: expected type `std::option::Option<std::boxed::Box<{integer}>>`
10               found type `std::result::Result<_, _>`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0308`.