summaryrefslogtreecommitdiffstats
path: root/src/test/ui/binding/func-arg-wild-pattern.rs
blob: bcd82c679a57ec4a0fefe8d58d14ecc7e969ceb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// run-pass
// Test that we can compile code that uses a `_` in function argument
// patterns.


fn foo((x, _): (isize, isize)) -> isize {
    x
}

pub fn main() {
    assert_eq!(foo((22, 23)), 22);
}