Sign in
rust
/
rust
/
28fc413c8fba1ef0c5e2162c2ad8d7eeb1089317
/
.
/
tests
/
ui
/
tuple
/
index-float.rs
blob: 2faf71cb01d33959c7a6d08b5a1ad768a6da673e [
file
]
//@ check-pass
fn
main
()
{
let
tuple
=
(((),),);
let
()
=
tuple
.
0.0
;
// OK, whitespace
let
()
=
tuple
.
0.
0
;
// OK, whitespace
let
()
=
tuple
.
/*special cases*/
0.0
;
// OK, comment
}