20 lines
675 B
Plaintext
20 lines
675 B
Plaintext
error[E0408]: variable `a` is not bound in all patterns
|
|
--> $DIR/resolve-inconsistent-names.rs:4:12
|
|
|
|
|
LL | a | b => {} //~ ERROR variable `a` is not bound in all patterns
|
|
| - ^ 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:4:8
|
|
|
|
|
LL | a | b => {} //~ ERROR variable `a` is not bound in all patterns
|
|
| ^ - variable not in all patterns
|
|
| |
|
|
| pattern doesn't bind `b`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0408`.
|