Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
torture
/
tuple_struct2.rs
blob: cb37ffe984a404bbdddbc4416d60284905a8cd8c [
file
] [
log
] [
blame
]
#![
feature
(
no_core
)]
#![
no_core
]
struct
Foo
(
i32
,
bool
);
fn
main
()
{
let
a
=
Foo
(
1
,
true
);
let
b
;
let
c
;
b
=
a
.
0
;
c
=
a
.
1
;
}