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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
400 B
Plaintext
Raw Normal View History

error: expected one of `>`, a const expression, lifetime, or type, found `,`
2019-02-07 03:10:11 -06:00
--> $DIR/issue-20616-7.rs:28:22
2018-07-15 16:11:54 -05:00
|
2019-02-07 03:10:11 -06:00
LL | type Type_7 = Box<(),,>;
| ^ expected one of `>`, a const expression, lifetime, or type
|
help: you might have meant to end the type parameters here
|
LL | type Type_7 = Box<()>,,>;
| +
2018-07-15 16:11:54 -05:00
error: aborting due to previous error