]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/parser/pat-tuple-3.rs
Rollup merge of #67005 - andrewbanchich:master, r=joshtriplett
[rust.git] / src / test / ui / parser / pat-tuple-3.rs
index e1e975d3c3ea04b3a7d3a42b434d2a9f998ce65e..1486ab231aab4f084fc404433339616c803179c5 100644 (file)
@@ -1,6 +1,6 @@
 fn main() {
     match (0, 1, 2) {
         (.., pat, ..) => {}
-        //~^ ERROR `..` can only be used once per tuple or tuple struct pattern
+        //~^ ERROR `..` can only be used once per tuple pattern
     }
 }