summaryrefslogtreecommitdiff
path: root/test/files/run/type-currying.check
Commit message (Collapse)AuthorAgeFilesLines
* Consecutive type application.Paul Phillips2011-12-271-0/+27
The parser through I think a quirk of history would not allow back to back type applications, like expr[T1, T2][T3, T4] Now it does, meaning the only thing it can: val n0 = Partial[immutable.HashMap][String][Int] ++ Seq(("a", 1)) val n1 = Partial.apply[immutable.HashMap].apply[String].apply[Int] ++ Seq(("a", 1)) assert(n0 == n1)