2020-12-04 05:21:33 -06:00
|
|
|
error: expected one of `>`, a const expression, lifetime, or type, found `,`
|
2019-02-05 10:00:19 -06:00
|
|
|
--> $DIR/issue-20616-5.rs:22:34
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | type Type_5<'a> = Type_1_<'a, (),,>;
|
2020-12-04 05:21:33 -06:00
|
|
|
| ^ expected one of `>`, a const expression, lifetime, or type
|
2022-03-01 13:40:48 -06:00
|
|
|
|
|
|
|
|
help: you might have meant to end the type parameters here
|
|
|
|
|
|
|
|
|
LL | type Type_5<'a> = Type_1_<'a, ()>,,>;
|
|
|
|
| +
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|