blob: 6eaac1b35776fa7549b3f07a6ffb1d603260b8b1 [file] [log] [blame]
error[E0308]: mismatched types
--> $DIR/issue-12552.rs:6:5
|
LL | match t {
| - this match expression has type `std::result::Result<_, {integer}>`
LL | Some(k) => match k {
| ^^^^^^^ expected enum `std::result::Result`, found enum `std::option::Option`
|
= note: expected type `std::result::Result<_, {integer}>`
found type `std::option::Option<_>`
error[E0308]: mismatched types
--> $DIR/issue-12552.rs:9:5
|
LL | None => ()
| ^^^^ expected enum `std::result::Result`, found enum `std::option::Option`
|
= note: expected type `std::result::Result<_, {integer}>`
found type `std::option::Option<_>`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0308`.