7 lines
129 B
Rust
7 lines
129 B
Rust
fn main() {
|
|
match (0, 1, 2) {
|
|
(pat, ..,) => {}
|
|
//~^ ERROR trailing comma is not permitted after `..`
|
|
}
|
|
}
|