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