| error: unexpected token `||` in pattern |
| --> $DIR/multiple-pattern-typo.rs:7:15 |
| | |
| LL | 1 | 2 || 3 => (), |
| | - ^^ |
| | | |
| | while parsing this or-pattern starting here |
| | |
| help: use a single `|` to separate multiple alternative patterns |
| | |
| LL - 1 | 2 || 3 => (), |
| LL + 1 | 2 | 3 => (), |
| | |
| |
| error: unexpected token `||` in pattern |
| --> $DIR/multiple-pattern-typo.rs:12:16 |
| | |
| LL | (1 | 2 || 3) => (), |
| | - ^^ |
| | | |
| | while parsing this or-pattern starting here |
| | |
| help: use a single `|` to separate multiple alternative patterns |
| | |
| LL - (1 | 2 || 3) => (), |
| LL + (1 | 2 | 3) => (), |
| | |
| |
| error: unexpected token `||` in pattern |
| --> $DIR/multiple-pattern-typo.rs:17:16 |
| | |
| LL | (1 | 2 || 3,) => (), |
| | - ^^ |
| | | |
| | while parsing this or-pattern starting here |
| | |
| help: use a single `|` to separate multiple alternative patterns |
| | |
| LL - (1 | 2 || 3,) => (), |
| LL + (1 | 2 | 3,) => (), |
| | |
| |
| error: unexpected token `||` in pattern |
| --> $DIR/multiple-pattern-typo.rs:24:18 |
| | |
| LL | TS(1 | 2 || 3) => (), |
| | - ^^ |
| | | |
| | while parsing this or-pattern starting here |
| | |
| help: use a single `|` to separate multiple alternative patterns |
| | |
| LL - TS(1 | 2 || 3) => (), |
| LL + TS(1 | 2 | 3) => (), |
| | |
| |
| error: unexpected token `||` in pattern |
| --> $DIR/multiple-pattern-typo.rs:31:23 |
| | |
| LL | NS { f: 1 | 2 || 3 } => (), |
| | - ^^ |
| | | |
| | while parsing this or-pattern starting here |
| | |
| help: use a single `|` to separate multiple alternative patterns |
| | |
| LL - NS { f: 1 | 2 || 3 } => (), |
| LL + NS { f: 1 | 2 | 3 } => (), |
| | |
| |
| error: unexpected token `||` in pattern |
| --> $DIR/multiple-pattern-typo.rs:36:16 |
| | |
| LL | [1 | 2 || 3] => (), |
| | - ^^ |
| | | |
| | while parsing this or-pattern starting here |
| | |
| help: use a single `|` to separate multiple alternative patterns |
| | |
| LL - [1 | 2 || 3] => (), |
| LL + [1 | 2 | 3] => (), |
| | |
| |
| error: unexpected token `||` in pattern |
| --> $DIR/multiple-pattern-typo.rs:41:9 |
| | |
| LL | || 1 | 2 | 3 => (), |
| | ^^ |
| | |
| help: use a single `|` to separate multiple alternative patterns |
| | |
| LL - || 1 | 2 | 3 => (), |
| LL + | 1 | 2 | 3 => (), |
| | |
| |
| error: aborting due to 7 previous errors |
| |