rust/tests/ui/issues/issue-7092.rs

16 lines
257 B
Rust

enum Whatever {
}
fn foo(x: Whatever) {
match x {
Some(field) =>
//~^ ERROR mismatched types
//~| expected `Whatever`, found `Option<_>`
//~| expected enum `Whatever`
//~| found enum `Option<_>`
field.access(),
}
}
fn main(){}