summaryrefslogtreecommitdiff
path: root/test/files/pos/SI-7638.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-7638 Superaccessor lookup after specializationVlad Ureche2013-07-081-0/+51
The crash was caused by a symbol lookup to rewire the super calls, done after pickler, but specialization added new traits and new members, thus making the super rewiring impossible. To avoid such problems, this patch moves symbol lookup after specialization, so the changes done by specialization (and miniboxing) become visible to mixin. NOTE: This patch will be followed by a similar patch to master. Review by @adriaanm or @retronym.