mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
23 lines
292 B
Rust
23 lines
292 B
Rust
//@ run-pass
|
|
fn tuple() {
|
|
let x = (1,);
|
|
match x {
|
|
(2, ..) => panic!(),
|
|
(..) => ()
|
|
}
|
|
}
|
|
|
|
fn tuple_struct() {
|
|
struct S(u8);
|
|
|
|
let x = S(1);
|
|
match x {
|
|
S(2, ..) => panic!(),
|
|
S(..) => ()
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
tuple();
|
|
tuple_struct();
|
|
}
|