summaryrefslogtreecommitdiff
path: root/test/files/pos/t5720-ownerous.scala
Commit message (Collapse)AuthorAgeFilesLines
* Fix SI-5009: case-class copy method now eta-expands over higher parameter lists.Lukas Rytz2012-05-111-2/+2
| | | | | | | | | Example: Given case class C(a: Int)(b: Int) if you call (new C(1)(2)).copy(a = 10)), you get a function (f: Int => C) such that (f.apply(20)) yields a (new C(10)(20)).
* SI-5720: Qual block doesn't update sym ownerSom Snytt2012-05-021-0/+56
A one-line change to blockWithQualifier. The symptom is undefined tmp var symbols in the backend; lamba lift thinks the tmp var is free and adds it to anonfun ctors.