summaryrefslogtreecommitdiffstats
path: root/src/test/ui/structs/struct-tuple-field-names.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/structs/struct-tuple-field-names.stderr')
-rw-r--r--src/test/ui/structs/struct-tuple-field-names.stderr25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/test/ui/structs/struct-tuple-field-names.stderr b/src/test/ui/structs/struct-tuple-field-names.stderr
deleted file mode 100644
index 5494c29a6..000000000
--- a/src/test/ui/structs/struct-tuple-field-names.stderr
+++ /dev/null
@@ -1,25 +0,0 @@
-error[E0769]: tuple variant `E::S` written as struct variant
- --> $DIR/struct-tuple-field-names.rs:8:9
- |
-LL | E::S { 0, 1 } => {}
- | ^^^^^^^^^^^^^
- |
-help: use the tuple variant pattern syntax instead
- |
-LL | E::S(_, _) => {}
- | ~~~~~~
-
-error[E0769]: tuple variant `S` written as struct variant
- --> $DIR/struct-tuple-field-names.rs:13:9
- |
-LL | S { } => {}
- | ^^^^^
- |
-help: use the tuple variant pattern syntax instead
- |
-LL | S(_, _) => {}
- | ~~~~~~
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0769`.