mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-11 21:57:27 +00:00
11 lines
177 B
Rust
11 lines
177 B
Rust
//@ run-pass
|
|
struct Foo(isize, isize);
|
|
|
|
pub fn main() {
|
|
let x = Foo(1, 2);
|
|
let Foo(y, z) = x;
|
|
println!("{} {}", y, z);
|
|
assert_eq!(y, 1);
|
|
assert_eq!(z, 2);
|
|
}
|