summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0023.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /src/test/ui/error-codes/E0023.stderr
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/error-codes/E0023.stderr')
-rw-r--r--src/test/ui/error-codes/E0023.stderr63
1 files changed, 0 insertions, 63 deletions
diff --git a/src/test/ui/error-codes/E0023.stderr b/src/test/ui/error-codes/E0023.stderr
deleted file mode 100644
index 3e321b037..000000000
--- a/src/test/ui/error-codes/E0023.stderr
+++ /dev/null
@@ -1,63 +0,0 @@
-error[E0023]: this pattern has 1 field, but the corresponding tuple variant has 2 fields
- --> $DIR/E0023.rs:11:22
- |
-LL | Apple(String, String),
- | ------ ------ tuple variant has 2 fields
-...
-LL | Fruit::Apple(a) => {},
- | ^ expected 2 fields, found 1
- |
-help: use `_` to explicitly ignore each field
- |
-LL | Fruit::Apple(a, _) => {},
- | +++
-
-error[E0023]: this pattern has 3 fields, but the corresponding tuple variant has 2 fields
- --> $DIR/E0023.rs:12:22
- |
-LL | Apple(String, String),
- | ------ ------ tuple variant has 2 fields
-...
-LL | Fruit::Apple(a, b, c) => {},
- | ^ ^ ^ expected 2 fields, found 3
-
-error[E0023]: this pattern has 2 fields, but the corresponding tuple variant has 1 field
- --> $DIR/E0023.rs:13:21
- |
-LL | Pear(u32),
- | --- tuple variant has 1 field
-...
-LL | Fruit::Pear(1, 2) => {},
- | ^ ^ expected 1 field, found 2
-
-error[E0023]: this pattern has 2 fields, but the corresponding tuple variant has 1 field
- --> $DIR/E0023.rs:14:23
- |
-LL | Orange((String, String)),
- | ---------------- tuple variant has 1 field
-...
-LL | Fruit::Orange(a, b) => {},
- | ^ ^ expected 1 field, found 2
- |
-help: missing parentheses
- |
-LL | Fruit::Orange((a, b)) => {},
- | + +
-
-error[E0023]: this pattern has 0 fields, but the corresponding tuple variant has 1 field
- --> $DIR/E0023.rs:15:9
- |
-LL | Banana(()),
- | -- tuple variant has 1 field
-...
-LL | Fruit::Banana() => {},
- | ^^^^^^^^^^^^^^^ expected 1 field, found 0
- |
-help: missing parentheses
- |
-LL | Fruit::Banana(()) => {},
- | + +
-
-error: aborting due to 5 previous errors
-
-For more information about this error, try `rustc --explain E0023`.