2017-12-10 13:47:55 -06:00
|
|
|
error[E0408]: variable `a` is not bound in all patterns
|
|
|
|
--> $DIR/resolve-inconsistent-names.rs:14:12
|
|
|
|
|
|
|
|
|
14 | 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:14:8
|
|
|
|
|
|
|
|
|
14 | 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
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0408"
|