summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/issues/issue-20616-7.stderr
blob: 3b8e07fa0d05df518b8bfecefe4c279bbf46fcf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error: expected one of `>`, a const expression, lifetime, or type, found `,`
  --> $DIR/issue-20616-7.rs:28:22
   |
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<()>,,>;
   |                     +

error: aborting due to previous error