2016-05-12 15:17:02 +02:00
|
|
|
fn main() {
|
2016-03-06 15:54:44 +03:00
|
|
|
match 0 {
|
2019-01-11 21:33:57 -08:00
|
|
|
(.., pat, ..) => {}
|
|
|
|
//~^ ERROR `..` can only be used once per tuple or tuple struct pattern
|
|
|
|
//~| ERROR mismatched types
|
2016-05-12 15:17:02 +02:00
|
|
|
}
|
|
|
|
}
|