mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
365 B
Rust
16 lines
365 B
Rust
enum MyEnum {
|
|
Tuple(i32),
|
|
Struct{ s: i32 },
|
|
}
|
|
|
|
fn foo(en: MyEnum) {
|
|
match en {
|
|
MyEnum::Tuple => "",
|
|
//~^ ERROR expected unit struct, unit variant or constant, found tuple variant `MyEnum::Tuple`
|
|
MyEnum::Struct => "",
|
|
//~^ ERROR expected unit struct, unit variant or constant, found struct variant `MyEnum::Struct`
|
|
};
|
|
}
|
|
|
|
fn main() {}
|