aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/torture/tuple3.rs
blob: d0fb6fc44297bb2cf8e6c8da3632ce78281ba8b1 (plain)
1
2
3
4
5
6
7
8
9
fn main() {
    let a = (1, true);

    let b;
    let c;

    b = a.0;
    c = a.1;
}