rust/tests/ui/never_patterns/parse.stderr

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

27 lines
836 B
Plaintext
Raw Normal View History

2023-11-26 20:15:56 -06:00
error: expected `,` following `match` arm
--> $DIR/parse.rs:26:16
|
LL | Some(!)
| ^ help: missing a comma here to end this `match` arm: `,`
error: expected `,` following `match` arm
--> $DIR/parse.rs:31:24
|
LL | Some(!) if true
| ^ help: missing a comma here to end this `match` arm: `,`
error: expected one of `,`, `=>`, `if`, `|`, or `}`, found `<=`
--> $DIR/parse.rs:40:17
|
LL | Some(!) <=
| ^^ expected one of `,`, `=>`, `if`, `|`, or `}`
error: top-level or-patterns are not allowed in `let` bindings
--> $DIR/parse.rs:64:9
|
LL | let Ok(_) | Err(!) = &res; // Disallowed; see #82048.
| ^^^^^^^^^^^^^^ help: wrap the pattern in parentheses: `(Ok(_) | Err(!))`
error: aborting due to 4 previous errors