rust/tests/ui/parser/issues/issue-20616-4.stderr

14 lines
452 B
Plaintext
Raw Normal View History

error: expected one of `>`, a const expression, lifetime, or type, found `,`
--> $DIR/issue-20616-4.rs:16:34
2018-07-15 16:11:54 -05:00
|
LL | type Type_4<T> = Type_1_<'static,, T>;
| ^ expected one of `>`, a const expression, lifetime, or type
|
help: you might have meant to end the type parameters here
|
LL | type Type_4<T> = Type_1_<'static>,, T>;
| +
2018-07-15 16:11:54 -05:00
error: aborting due to previous error