rust/tests/ui/or-patterns/multiple-pattern-typo.stderr

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

99 lines
2.5 KiB
Plaintext
Raw Normal View History

error: unexpected token `||` in pattern
--> $DIR/multiple-pattern-typo.rs:7:15
|
2019-03-09 12:03:44 +00:00
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