mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 13:57:24 +00:00
24 lines
291 B
Rust
24 lines
291 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();
|
|
}
|