summaryrefslogtreecommitdiff
path: root/test/files/run/t5009.check
Commit message (Collapse)AuthorAgeFilesLines
* Fix SI-5009: case-class copy method now eta-expands over higher parameter lists.Lukas Rytz2012-05-111-0/+4
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)).