summaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/torture/tuple_function.rs
blob: 514b586cc09a721f7754f1b37ae2b2809110eae9 (plain)
1
2
3
4
5
6
fn foo() -> i32 {
    return 1;
}
fn main() {
    let _a = (foo(), 2);
}