Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
tuple
/
index-float.rs
blob: 2faf71cb01d33959c7a6d08b5a1ad768a6da673e [
file
] [
log
] [
blame
] [
edit
]
//@ 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
}