mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 01:08:18 +00:00
9 lines
101 B
Rust
9 lines
101 B
Rust
// run-pass
|
|
#![allow(unused_variables)]
|
|
fn foo((x, y): (i8, i8)) {
|
|
}
|
|
|
|
fn main() {
|
|
foo((0, 1));
|
|
}
|