2017-12-10 22:47:55 +03:00
|
|
|
error[E0408]: variable `beta` is not bound in all patterns
|
|
|
|
--> $DIR/issue-2848.rs:22:7
|
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | alpha | beta => {} //~ ERROR variable `beta` is not bound in all patterns
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^^ ---- variable not in all patterns
|
|
|
|
| |
|
|
|
|
| pattern doesn't bind `beta`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-02-19 21:40:25 +01:00
|
|
|
If you want more information on this error, try using "rustc --explain E0408"
|