Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
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
}