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