diff --git a/src/test/ui/parser/pat-tuple-1.rs b/src/test/ui/parser/pat-tuple-1.rs index d76096c2598..0e49b547f7d 100644 --- a/src/test/ui/parser/pat-tuple-1.rs +++ b/src/test/ui/parser/pat-tuple-1.rs @@ -1,6 +1,5 @@ fn main() { match (0, 1) { - (, ..) => {} - //~^ ERROR expected pattern, found `,` + (, ..) => {} //~ ERROR expected pattern, found `,` } }