summaryrefslogtreecommitdiff
path: root/test/files/pos/t6205.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-6205 make pt fully defined before inferTypedPatternAdriaan Moors2012-08-081-0/+18
refines my fix for SI-2038 (#981) by making pt fully defined before calling inferTypedPattern, instead of making the result of inferTypedPattern fully defined I finally realized my mistake by diffing the -Ytyper-debug output of compiling the variants with: ``` x match {case Holder(k: A[kt]) => (k: A[kt])} ``` and ``` (x: Any) match {case Holder(k: A[kt]) => (k: A[kt])} ```