summaryrefslogtreecommitdiffstats
path: root/src/test/ui/pattern/pattern-binding-disambiguation.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:32 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:32 +0000
commit4547b622d8d29df964fa2914213088b148c498fc (patch)
tree9fc6b25f3c3add6b745be9a2400a6e96140046e9 /src/test/ui/pattern/pattern-binding-disambiguation.stderr
parentReleasing progress-linux version 1.66.0+dfsg1-1~progress7.99u1. (diff)
downloadrustc-4547b622d8d29df964fa2914213088b148c498fc.tar.xz
rustc-4547b622d8d29df964fa2914213088b148c498fc.zip
Merging upstream version 1.67.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/pattern/pattern-binding-disambiguation.stderr')
-rw-r--r--src/test/ui/pattern/pattern-binding-disambiguation.stderr20
1 files changed, 1 insertions, 19 deletions
diff --git a/src/test/ui/pattern/pattern-binding-disambiguation.stderr b/src/test/ui/pattern/pattern-binding-disambiguation.stderr
index 1529e538b..d54467b3c 100644
--- a/src/test/ui/pattern/pattern-binding-disambiguation.stderr
+++ b/src/test/ui/pattern/pattern-binding-disambiguation.stderr
@@ -22,15 +22,6 @@ LL | TupleVariant => {}
| cannot be named the same as a tuple variant
| help: try specify the pattern arguments: `TupleVariant(..)`
-error[E0530]: match bindings cannot shadow struct variants
- --> $DIR/pattern-binding-disambiguation.rs:36:9
- |
-LL | use E::*;
- | ---- the struct variant `BracedVariant` is imported here
-...
-LL | BracedVariant => {}
- | ^^^^^^^^^^^^^ cannot be named the same as a struct variant
-
error[E0530]: match bindings cannot shadow statics
--> $DIR/pattern-binding-disambiguation.rs:42:9
|
@@ -58,15 +49,6 @@ LL | use E::*;
LL | let TupleVariant = doesnt_matter;
| ^^^^^^^^^^^^ cannot be named the same as a tuple variant
-error[E0530]: let bindings cannot shadow struct variants
- --> $DIR/pattern-binding-disambiguation.rs:53:9
- |
-LL | use E::*;
- | ---- the struct variant `BracedVariant` is imported here
-...
-LL | let BracedVariant = doesnt_matter;
- | ^^^^^^^^^^^^^ cannot be named the same as a struct variant
-
error[E0530]: let bindings cannot shadow statics
--> $DIR/pattern-binding-disambiguation.rs:55:9
|
@@ -76,6 +58,6 @@ LL | static STATIC: () = ();
LL | let STATIC = doesnt_matter;
| ^^^^^^ cannot be named the same as a static
-error: aborting due to 8 previous errors
+error: aborting due to 6 previous errors
For more information about this error, try `rustc --explain E0530`.