]> git.proxmox.com Git - rustc.git/blame - src/test/ui/parser/issues/issue-93282.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / parser / issues / issue-93282.stderr
CommitLineData
5099ac24
FG
1error: expected `while`, `for`, `loop` or `{` after a label
2 --> $DIR/issue-93282.rs:2:9
3 |
4LL | f<'a,>
5 | ^ expected `while`, `for`, `loop` or `{` after a label
6
923072b8 7error: expected one of `.`, `:`, `;`, `?`, `for`, `loop`, `while`, `}`, or an operator, found `,`
5099ac24
FG
8 --> $DIR/issue-93282.rs:2:9
9 |
10LL | f<'a,>
923072b8 11 | ^ expected one of 9 possible tokens
5099ac24
FG
12 |
13help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
14 |
15LL | f::<'a,>
16 | ++
17
18error: expected `while`, `for`, `loop` or `{` after a label
19 --> $DIR/issue-93282.rs:13:11
20 |
21LL | bar('y, x);
22 | ^ expected `while`, `for`, `loop` or `{` after a label
23
24error: aborting due to 3 previous errors
25