mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
210 B
Rust
16 lines
210 B
Rust
// run-pass
|
|
|
|
struct A(isize);
|
|
|
|
fn main() {
|
|
let x = match A(3) {
|
|
A(..) => 1
|
|
};
|
|
assert_eq!(x, 1);
|
|
let x = match A(4) {
|
|
A(1) => 1,
|
|
A(..) => 2
|
|
};
|
|
assert_eq!(x, 2);
|
|
}
|