]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/issues/issue-93867.stderr
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / ui / parser / issues / issue-93867.stderr
1 error: expected one of `,` or `>`, found `K`
2   --> $DIR/issue-93867.rs:6:38
3    |
4 LL | pub fn entry<'a, K, V>() -> Entry<'a K, V> {
5    |                                      ^ expected one of `,` or `>`
6    |
7 help: you might have meant to end the type parameters here
8    |
9 LL | pub fn entry<'a, K, V>() -> Entry<'a> K, V> {
10    |                                     +
11
12 error: aborting due to previous error
13