summaryrefslogtreecommitdiff
path: root/test/files/pos/kinds.scala
Commit message (Collapse)AuthorAgeFilesLines
* Add PolyType to Infer#normalize.Paul Phillips2013-01-261-0/+13
It arises when inferring the type of an overloaded call: def g(s: String): String = s def f: String = ??? def f[C](c: C): String = g(f) Also refined warning when isHKSubType is called with arguments which very likely were never meant to be compared.