Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
tuple
/
index-float.rs
blob: 2faf71cb01d33959c7a6d08b5a1ad768a6da673e [
file
] [
log
] [
blame
]
//@ 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
}