]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/parser/pat-tuple-2.rs
Rollup merge of #67005 - andrewbanchich:master, r=joshtriplett
[rust.git] / src / test / ui / parser / pat-tuple-2.rs
index fd25499381a2849df1801e7b5733a52ff5bddf86..a8f3debd3d6341a9997272379d24f41ac6ec3b12 100644 (file)
@@ -1,6 +1,7 @@
+// check-pass
+
 fn main() {
     match (0, 1, 2) {
         (pat, ..,) => {}
-        //~^ ERROR trailing comma is not permitted after `..`
     }
 }