summaryrefslogtreecommitdiffstats
path: root/src/test/ui/pattern/bindings-after-at/pat-at-same-name-both.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/pattern/bindings-after-at/pat-at-same-name-both.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/pattern/bindings-after-at/pat-at-same-name-both.stderr')
-rw-r--r--src/test/ui/pattern/bindings-after-at/pat-at-same-name-both.stderr64
1 files changed, 0 insertions, 64 deletions
diff --git a/src/test/ui/pattern/bindings-after-at/pat-at-same-name-both.stderr b/src/test/ui/pattern/bindings-after-at/pat-at-same-name-both.stderr
deleted file mode 100644
index a165549f6..000000000
--- a/src/test/ui/pattern/bindings-after-at/pat-at-same-name-both.stderr
+++ /dev/null
@@ -1,64 +0,0 @@
-error[E0415]: identifier `a` is bound more than once in this parameter list
- --> $DIR/pat-at-same-name-both.rs:6:14
- |
-LL | fn f(a @ a @ a: ()) {}
- | ^ used as parameter more than once
-
-error[E0415]: identifier `a` is bound more than once in this parameter list
- --> $DIR/pat-at-same-name-both.rs:6:18
- |
-LL | fn f(a @ a @ a: ()) {}
- | ^ used as parameter more than once
-
-error[E0416]: identifier `a` is bound more than once in the same pattern
- --> $DIR/pat-at-same-name-both.rs:11:20
- |
-LL | Ok(a @ b @ a)
- | ^ used in a pattern more than once
-
-error[E0416]: identifier `a` is bound more than once in the same pattern
- --> $DIR/pat-at-same-name-both.rs:13:23
- |
-LL | | Err(a @ b @ a)
- | ^ used in a pattern more than once
-
-error[E0416]: identifier `a` is bound more than once in the same pattern
- --> $DIR/pat-at-same-name-both.rs:18:13
- |
-LL | let a @ a @ a = ();
- | ^ used in a pattern more than once
-
-error[E0416]: identifier `a` is bound more than once in the same pattern
- --> $DIR/pat-at-same-name-both.rs:18:17
- |
-LL | let a @ a @ a = ();
- | ^ used in a pattern more than once
-
-error[E0416]: identifier `a` is bound more than once in the same pattern
- --> $DIR/pat-at-same-name-both.rs:21:21
- |
-LL | let ref a @ ref a = ();
- | ^ used in a pattern more than once
-
-error[E0416]: identifier `a` is bound more than once in the same pattern
- --> $DIR/pat-at-same-name-both.rs:23:29
- |
-LL | let ref mut a @ ref mut a = ();
- | ^ used in a pattern more than once
-
-error[E0416]: identifier `a` is bound more than once in the same pattern
- --> $DIR/pat-at-same-name-both.rs:26:17
- |
-LL | let a @ (Ok(a) | Err(a)) = Ok(());
- | ^ used in a pattern more than once
-
-error[E0416]: identifier `a` is bound more than once in the same pattern
- --> $DIR/pat-at-same-name-both.rs:26:26
- |
-LL | let a @ (Ok(a) | Err(a)) = Ok(());
- | ^ used in a pattern more than once
-
-error: aborting due to 10 previous errors
-
-Some errors have detailed explanations: E0415, E0416.
-For more information about an error, try `rustc --explain E0415`.