summaryrefslogtreecommitdiff
path: root/test/files/pos/t8060.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-8060 Avoid infinite loop with higher kinded type aliasJason Zaugg2013-12-101-0/+11
The `dealiasLocals` map was assuming that: tp.isAliasType implies (tp.dealias ne tp) This isn't true if `!typeParamsMatchArgs`. This commit avoids the infinite loop by checking whether or not dealiasing progresses.