Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
structs-enums
/
tuple-struct-construct.rs
blob: 972fc9dc04a905ed912bcd7cbc67fb30b0bf0450 [
file
] [
log
] [
blame
]
// run-pass
#[
derive
(
Debug
)]
struct
Foo
(
isize
,
isize
);
pub
fn
main
()
{
let
x
=
Foo
(
1
,
2
);
println
!(
"{:?}"
,
x
);
}