mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 02:40:57 +00:00
14 lines
231 B
Rust
14 lines
231 B
Rust
//@ run-pass
|
|
struct Foo(isize, isize);
|
|
|
|
pub fn main() {
|
|
let x = Foo(1, 2);
|
|
match x {
|
|
Foo(a, b) => {
|
|
assert_eq!(a, 1);
|
|
assert_eq!(b, 2);
|
|
println!("{} {}", a, b);
|
|
}
|
|
}
|
|
}
|