aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/tuple_float_index.rs
blob: 87410c5708d7b3fe5b692f9adafaee4589a6e14a (plain)
1
2
3
4
5
6
fn main() {
    let tuple = (((),()),);

    // Do not reformat, the space after the second dot is required
    let _ = tuple.0. 1;
}