os-rust/tests/ui/or-patterns/inner-or-pat.or4.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
415 B
Text
Raw Permalink Normal View History

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
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`.