2020-12-04 11:21:33 +00:00
|
|
|
error: expected one of `>`, a const expression, lifetime, or type, found `,`
|
2019-02-07 09:10:11 +00:00
|
|
|
--> $DIR/issue-20616-3.rs:13:24
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2019-02-07 09:10:11 +00:00
|
|
|
LL | type Type_3<T> = Box<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_3<T> = Box<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
|
|
|
|