mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 17:25:45 +00:00
11 lines
176 B
Rust
11 lines
176 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);
|
|
}
|