blob: 53da4622013ba6625b94b3315957e6cfde0157c9 [file]
//! Regression test for <https://github.com/rust-lang/rust/issues/17800>.
enum MyOption<T> {
MySome(T),
MyNone,
}
fn main() {
match MyOption::MySome(42) {
MyOption::MySome { x: 42 } => (),
//~^ ERROR tuple variant `MyOption::MySome` written as struct variant
_ => (),
}
}