30862a64c2
This is required by the check-fast target because each test is slurped up into a submodule.
11 lines
182 B
Rust
11 lines
182 B
Rust
// Test that we can compile code that uses a `_` in function argument
|
|
// patterns.
|
|
|
|
fn foo((x, _): (int, int)) -> int {
|
|
x
|
|
}
|
|
|
|
pub fn main() {
|
|
assert_eq!(foo((22, 23)), 22);
|
|
}
|