mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-05 08:24:31 +00:00
14 lines
230 B
Rust
14 lines
230 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);
|
|
}
|
|
}
|
|
}
|