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

51 lines
1.5 KiB
Plaintext
Raw Normal View History

2023-11-27 03:15:56 +01: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 `<=`
2023-11-27 03:47:49 +01:00
--> $DIR/parse.rs:42:17
2023-11-27 03:15:56 +01:00
|
LL | Some(!) <=
| ^^ expected one of `,`, `=>`, `if`, `|`, or `}`
error: top-level or-patterns are not allowed in `let` bindings
2023-11-27 03:47:49 +01:00
--> $DIR/parse.rs:67:9
2023-11-27 03:15:56 +01:00
|
LL | let Ok(_) | Err(!) = &res; // Disallowed; see #82048.
| ^^^^^^^^^^^^^^ help: wrap the pattern in parentheses: `(Ok(_) | Err(!))`
2024-01-05 10:11:18 +01:00
error: never patterns cannot contain variable bindings
--> $DIR/parse.rs:73:9
|
LL | let y @ ! = x;
| ^ help: use a wildcard `_` instead
2023-11-27 03:47:49 +01:00
error: a guard on a never pattern will never be run
--> $DIR/parse.rs:31:20
|
LL | Some(!) if true
| ^^^^ help: remove this guard
error: a guard on a never pattern will never be run
--> $DIR/parse.rs:37:20
|
LL | Some(!) if true,
| ^^^^ help: remove this guard
error: a guard on a never pattern will never be run
--> $DIR/parse.rs:49:21
|
LL | never!() if true,
| ^^^^ help: remove this guard
2024-01-05 10:11:18 +01:00
error: aborting due to 8 previous errors
2023-11-27 03:15:56 +01:00