2022-06-17 08:34:00 -05:00
|
|
|
error[E0408]: variable `x` is not bound in all patterns
|
2022-08-17 05:21:03 -05:00
|
|
|
--> $DIR/inner-or-pat.rs:53:37
|
2022-06-17 08:34:00 -05:00
|
|
|
|
|
|
|
|
LL | (x @ "red" | (x @ "blue" | "red")) => {
|
|
|
|
| - ^^^^^ pattern doesn't bind `x`
|
|
|
|
| |
|
|
|
|
| variable not in all patterns
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-06-17 08:34:00 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0408`.
|