about summary refs log tree commit diff
path: root/src/test/ui/pattern/pattern-error-continue.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/pattern/pattern-error-continue.stderr')
-rw-r--r--src/test/ui/pattern/pattern-error-continue.stderr6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/ui/pattern/pattern-error-continue.stderr b/src/test/ui/pattern/pattern-error-continue.stderr
index 654814afcfe..11e0c31cfa6 100644
--- a/src/test/ui/pattern/pattern-error-continue.stderr
+++ b/src/test/ui/pattern/pattern-error-continue.stderr
@@ -1,13 +1,13 @@
 error[E0433]: failed to resolve: use of undeclared type or module `E`
   --> $DIR/pattern-error-continue.rs:35:9
    |
-LL |         E::V => {} //~ ERROR failed to resolve: use of undeclared type or module `E`
+LL |         E::V => {}
    |         ^ use of undeclared type or module `E`
 
 error[E0532]: expected tuple struct/variant, found unit variant `A::D`
   --> $DIR/pattern-error-continue.rs:18:9
    |
-LL |         A::D(_) => (),       //~ ERROR expected tuple struct/variant, found unit variant `A::D`
+LL |         A::D(_) => (),
    |         ^^^-
    |            |
    |            help: a tuple variant with a similar name exists: `B`
@@ -15,7 +15,7 @@ LL |         A::D(_) => (),       //~ ERROR expected tuple struct/variant, found
 error[E0023]: this pattern has 3 fields, but the corresponding tuple variant has 2 fields
   --> $DIR/pattern-error-continue.rs:17:9
    |
-LL |         A::B(_, _, _) => (), //~ ERROR this pattern has 3 fields, but
+LL |         A::B(_, _, _) => (),
    |         ^^^^^^^^^^^^^ expected 2 fields, found 3
 
 error[E0308]: mismatched types