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