Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
structs-enums
/
tuple-struct-destructuring.rs
blob: dff87ead03377dd1c4bbe1434c705b22fad9fbe1 [
file
] [
log
] [
blame
]
// 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
);
}