2022-02-02 18:33:13 +00:00
|
|
|
error: expected `while`, `for`, `loop` or `{` after a label
|
|
|
|
--> $DIR/issue-93282.rs:2:9
|
|
|
|
|
|
|
|
|
LL | f<'a,>
|
|
|
|
| ^ expected `while`, `for`, `loop` or `{` after a label
|
|
|
|
|
2022-01-25 18:47:10 +00:00
|
|
|
error: expected one of `.`, `:`, `;`, `?`, `for`, `loop`, `while`, `{`, `}`, or an operator, found `,`
|
|
|
|
--> $DIR/issue-93282.rs:2:9
|
|
|
|
|
|
|
|
|
LL | f<'a,>
|
|
|
|
| ^ expected one of 10 possible tokens
|
|
|
|
|
|
|
|
|
help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
|
|
|
|
|
|
|
|
|
LL | f::<'a,>
|
|
|
|
| ++
|
|
|
|
|
2022-02-02 18:33:13 +00:00
|
|
|
error: expected `while`, `for`, `loop` or `{` after a label
|
|
|
|
--> $DIR/issue-93282.rs:13:11
|
|
|
|
|
|
|
|
|
LL | bar('y, x);
|
|
|
|
| ^ expected `while`, `for`, `loop` or `{` after a label
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2022-01-25 18:47:10 +00:00
|
|
|
|