summaryrefslogtreecommitdiffstats
path: root/src/test/ui/pattern/usefulness/unstable-gated-fields.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
commita4b7ed7a42c716ab9f05e351f003d589124fd55d (patch)
treeb620cd3f223850b28716e474e80c58059dca5dd4 /src/test/ui/pattern/usefulness/unstable-gated-fields.stderr
parentAdding upstream version 1.67.1+dfsg1. (diff)
downloadrustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.tar.xz
rustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.zip
Adding upstream version 1.68.2+dfsg1.upstream/1.68.2+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/pattern/usefulness/unstable-gated-fields.stderr')
-rw-r--r--src/test/ui/pattern/usefulness/unstable-gated-fields.stderr33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/test/ui/pattern/usefulness/unstable-gated-fields.stderr b/src/test/ui/pattern/usefulness/unstable-gated-fields.stderr
deleted file mode 100644
index e4f5fa06b..000000000
--- a/src/test/ui/pattern/usefulness/unstable-gated-fields.stderr
+++ /dev/null
@@ -1,33 +0,0 @@
-error[E0027]: pattern does not mention field `unstable`
- --> $DIR/unstable-gated-fields.rs:10:9
- |
-LL | let UnstableStruct { stable, stable2, } = UnstableStruct::default();
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing field `unstable`
- |
-help: include the missing field in the pattern
- |
-LL | let UnstableStruct { stable, stable2, unstable } = UnstableStruct::default();
- | ~~~~~~~~~~~~
-help: if you don't care about this missing field, you can explicitly ignore it
- |
-LL | let UnstableStruct { stable, stable2, .. } = UnstableStruct::default();
- | ~~~~~~
-
-error[E0027]: pattern does not mention field `stable2`
- --> $DIR/unstable-gated-fields.rs:13:9
- |
-LL | let UnstableStruct { stable, unstable, } = UnstableStruct::default();
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing field `stable2`
- |
-help: include the missing field in the pattern
- |
-LL | let UnstableStruct { stable, unstable, stable2 } = UnstableStruct::default();
- | ~~~~~~~~~~~
-help: if you don't care about this missing field, you can explicitly ignore it
- |
-LL | let UnstableStruct { stable, unstable, .. } = UnstableStruct::default();
- | ~~~~~~
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0027`.