mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
57 lines
2.0 KiB
Plaintext
57 lines
2.0 KiB
Plaintext
error: unexpected token `||` in pattern
|
|
--> $DIR/multiple-pattern-typo.rs:7:15
|
|
|
|
|
LL | 1 | 2 || 3 => (),
|
|
| - ^^ help: use a single `|` to separate multiple alternative patterns: `|`
|
|
| |
|
|
| while parsing this or-pattern starting here
|
|
|
|
error: unexpected token `||` in pattern
|
|
--> $DIR/multiple-pattern-typo.rs:12:16
|
|
|
|
|
LL | (1 | 2 || 3) => (),
|
|
| - ^^ help: use a single `|` to separate multiple alternative patterns: `|`
|
|
| |
|
|
| while parsing this or-pattern starting here
|
|
|
|
error: unexpected token `||` in pattern
|
|
--> $DIR/multiple-pattern-typo.rs:17:16
|
|
|
|
|
LL | (1 | 2 || 3,) => (),
|
|
| - ^^ help: use a single `|` to separate multiple alternative patterns: `|`
|
|
| |
|
|
| while parsing this or-pattern starting here
|
|
|
|
error: unexpected token `||` in pattern
|
|
--> $DIR/multiple-pattern-typo.rs:24:18
|
|
|
|
|
LL | TS(1 | 2 || 3) => (),
|
|
| - ^^ help: use a single `|` to separate multiple alternative patterns: `|`
|
|
| |
|
|
| while parsing this or-pattern starting here
|
|
|
|
error: unexpected token `||` in pattern
|
|
--> $DIR/multiple-pattern-typo.rs:31:23
|
|
|
|
|
LL | NS { f: 1 | 2 || 3 } => (),
|
|
| - ^^ help: use a single `|` to separate multiple alternative patterns: `|`
|
|
| |
|
|
| while parsing this or-pattern starting here
|
|
|
|
error: unexpected token `||` in pattern
|
|
--> $DIR/multiple-pattern-typo.rs:36:16
|
|
|
|
|
LL | [1 | 2 || 3] => (),
|
|
| - ^^ help: use a single `|` to separate multiple alternative patterns: `|`
|
|
| |
|
|
| while parsing this or-pattern starting here
|
|
|
|
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: `|`
|
|
|
|
error: aborting due to 7 previous errors
|
|
|