mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 23:03:06 +03:00
24 lines
439 B
Rust
24 lines
439 B
Rust
//@ run-pass
|
|
#[derive(Debug)]
|
|
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);
|
|
|
|
let x = Foo(1, 2);
|
|
match x {
|
|
Foo(a, b) => {
|
|
assert_eq!(a, 1);
|
|
assert_eq!(b, 2);
|
|
println!("{} {}", a, b);
|
|
}
|
|
}
|
|
|
|
let x = Foo(1, 2);
|
|
assert_eq!(format!("{x:?}"), "Foo(1, 2)");
|
|
}
|