]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issues/issue-93282.stderr
Bless nll tests.
[rust.git] / src / test / ui / parser / issues / issue-93282.stderr
1 error: expected one of `.`, `:`, `;`, `?`, `for`, `loop`, `while`, `{`, `}`, or an operator, found `,`
2   --> $DIR/issue-93282.rs:2:9
3    |
4 LL |     f<'a,>
5    |         ^ expected one of 10 possible tokens
6    |
7 help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
8    |
9 LL |     f::<'a,>
10    |      ++
11
12 error: aborting due to previous error
13