aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t1280.scala
Commit message (Collapse)AuthorAgeFilesLines
* Fix of t1280 - type of selfMartin Odersky2014-03-211-0/+1
The type of self name "x" was taken to be the thisType of the current owner. But the current owner was a local dummy of the class in question, so the ThisType was NoPrefix. Inserting an enclosingClass fixes the problem.