summaryrefslogtreecommitdiff
path: root/test/files/pos/t5900a.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-5900 Fix pattern inference regressionJason Zaugg2014-02-121-0/+9
This commit does not close SI-5900. It only addresses a regression in 2.11 prereleases caused by SI-7886. The fix for SI-7886 was incomplete (as shown by the last commit) and incorrect (as shown by the regression in pos/t5900a.scala and the fact it ended up inferring type parameters.) I believe that the key to fixing this problem will be unifying the inference of case class constructor patterns and extractor patterns. I've explored that idea: https://gist.github.com/retronym/7704153 https://github.com/retronym/scala/compare/ticket/5900 But didn't quite get there.