summaryrefslogtreecommitdiffstats
path: root/src/test/ui/resolve/resolve-inconsistent-names.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/resolve/resolve-inconsistent-names.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/resolve/resolve-inconsistent-names.stderr')
-rw-r--r--src/test/ui/resolve/resolve-inconsistent-names.stderr104
1 files changed, 0 insertions, 104 deletions
diff --git a/src/test/ui/resolve/resolve-inconsistent-names.stderr b/src/test/ui/resolve/resolve-inconsistent-names.stderr
deleted file mode 100644
index 773c9f6cd..000000000
--- a/src/test/ui/resolve/resolve-inconsistent-names.stderr
+++ /dev/null
@@ -1,104 +0,0 @@
-error[E0408]: variable `a` is not bound in all patterns
- --> $DIR/resolve-inconsistent-names.rs:13:12
- |
-LL | a | b => {}
- | - ^ pattern doesn't bind `a`
- | |
- | variable not in all patterns
-
-error[E0408]: variable `b` is not bound in all patterns
- --> $DIR/resolve-inconsistent-names.rs:13:8
- |
-LL | a | b => {}
- | ^ - variable not in all patterns
- | |
- | pattern doesn't bind `b`
-
-error[E0408]: variable `A` is not bound in all patterns
- --> $DIR/resolve-inconsistent-names.rs:19:18
- |
-LL | (A, B) | (ref B, c) | (c, A) => ()
- | - ^^^^^^^^^^ - variable not in all patterns
- | | |
- | | pattern doesn't bind `A`
- | variable not in all patterns
- |
-help: if you meant to match on unit variant `E::A`, use the full path in the pattern
- |
-LL | (E::A, B) | (ref B, c) | (c, A) => ()
- | ~~~~
-
-error[E0408]: variable `B` is not bound in all patterns
- --> $DIR/resolve-inconsistent-names.rs:19:31
- |
-LL | (A, B) | (ref B, c) | (c, A) => ()
- | - - ^^^^^^ pattern doesn't bind `B`
- | | |
- | | variable not in all patterns
- | variable not in all patterns
-
-error[E0408]: variable `c` is not bound in all patterns
- --> $DIR/resolve-inconsistent-names.rs:19:9
- |
-LL | (A, B) | (ref B, c) | (c, A) => ()
- | ^^^^^^ - - variable not in all patterns
- | | |
- | | variable not in all patterns
- | pattern doesn't bind `c`
-
-error[E0409]: variable `B` is bound inconsistently across alternatives separated by `|`
- --> $DIR/resolve-inconsistent-names.rs:19:23
- |
-LL | (A, B) | (ref B, c) | (c, A) => ()
- | - ^ bound in different ways
- | |
- | first binding
-
-error[E0408]: variable `CONST1` is not bound in all patterns
- --> $DIR/resolve-inconsistent-names.rs:31:23
- |
-LL | (CONST1, _) | (_, Const2) => ()
- | ------ ^^^^^^^^^^^ pattern doesn't bind `CONST1`
- | |
- | variable not in all patterns
- |
-note: you might have meant to match on constant `m::CONST1`, which exists but is inaccessible
- --> $DIR/resolve-inconsistent-names.rs:6:5
- |
-LL | const CONST1: usize = 10;
- | ^^^^^^^^^^^^^^^^^^^^^^^^^ not accessible
-
-error[E0408]: variable `Const2` is not bound in all patterns
- --> $DIR/resolve-inconsistent-names.rs:31:9
- |
-LL | (CONST1, _) | (_, Const2) => ()
- | ^^^^^^^^^^^ ------ variable not in all patterns
- | |
- | pattern doesn't bind `Const2`
- |
-help: if you meant to match on constant `m::Const2`, use the full path in the pattern
- |
-LL | (CONST1, _) | (_, m::Const2) => ()
- | ~~~~~~~~~
-
-error[E0308]: mismatched types
- --> $DIR/resolve-inconsistent-names.rs:19:19
- |
-LL | match x {
- | - this expression has type `(E, E)`
-LL | (A, B) | (ref B, c) | (c, A) => ()
- | - ^^^^^ expected enum `E`, found `&E`
- | |
- | first introduced with type `E` here
- |
- = note: in the same arm, a binding must have the same type in all alternatives
-help: consider removing `ref`
- |
-LL - (A, B) | (ref B, c) | (c, A) => ()
-LL + (A, B) | (B, c) | (c, A) => ()
- |
-
-error: aborting due to 9 previous errors
-
-Some errors have detailed explanations: E0308, E0408, E0409.
-For more information about an error, try `rustc --explain E0308`.