aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/execute/torture/let-pattern-1.rs
blob: 107d819a69f23c9bb3d70adedaf4de0d124a38b1 (plain)
1
2
3
4
fn main() -> i32 {
    let (x, y, z) = (2, 3, 6);
    x * y - z
}