mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
239 B
Rust
13 lines
239 B
Rust
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
|
|
_ => (),
|
|
}
|
|
}
|