Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
structs-enums
/
tuple-struct-destructuring.rs
blob: 5213052dd7a40a20c20b23bcaf7197e4983da4e0 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
);
}