summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-20616-3.stderr
blob: dbff116e505f2799bcb499ba5a1753ec75328ab4 (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-3.rs:13:24
   |
LL | type Type_3<T> = Box<T,,>;
   |                        ^ expected one of `>`, a const expression, lifetime, or type
   |
help: you might have meant to end the type parameters here
   |
LL | type Type_3<T> = Box<T>,,>;
   |                       +

error: aborting due to previous error