rust/tests/ui/parser/issues/issue-20616-6.stderr
2023-01-11 09:32:08 +00:00

14 lines
416 B
Plaintext

error: expected one of `>`, a const expression, lifetime, or type, found `,`
--> $DIR/issue-20616-6.rs:25:26
|
LL | type Type_6 = Type_5_<'a,,>;
| ^ expected one of `>`, a const expression, lifetime, or type
|
help: you might have meant to end the type parameters here
|
LL | type Type_6 = Type_5_<'a>,,>;
| +
error: aborting due to previous error