Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
tuple-index.rs
blob: faf08db2d925115ba2e435cf406625216591a255 [
file
]
#![
feature
(
no_core
)]
#![
no_core
]
fn
main
()
{
let
t
=
(
10
,
20
);
let
_a
=
t
.
0
;
let
_b
=
t
.
1
;
struct
S
(
u8
,
u8
);
let
s
=
S
(
1
,
2
);
let
_c
=
s
.
0
;
}