mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 06:42:22 +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);
|
|
}
|