mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
212 B
Rust
12 lines
212 B
Rust
struct S { a: isize }
|
|
enum E { C(isize) }
|
|
|
|
fn main() {
|
|
match (S { a: 1 }) {
|
|
E::C(_) => (),
|
|
//~^ ERROR mismatched types
|
|
//~| expected struct `S`, found enum `E`
|
|
_ => ()
|
|
}
|
|
}
|