blob: 35cc9463aea221b016b9fd05083016a5603cb485 [file] [log] [blame] [edit]
//@ 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);
}