Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
torture
/
tuple3.rs
blob: 38085b8d35b71187adb7200ec5bb0fbee38158c6 [
file
]
#![
feature
(
no_core
)]
#![
no_core
]
fn
main
()
{
let
a
=
(
1
,
true
);
let
b
;
let
c
;
b
=
a
.
0
;
c
=
a
.
1
;
}