aboutsummaryrefslogtreecommitdiff
path: root/tests/run/i768.scala
Commit message (Collapse)AuthorAgeFilesLines
* Refine refOfDef top handle repeated parametersMartin Odersky2015-08-221-0/+10
refOfDef is used in desugaring case classes, specifically the definition of an apply method. Here it is necessary to pass a vararg argument (x: _*) if the case class parameter is repeated. This functionality is now added to `refOfDef`. I verified that the other uses of `refOfDef` are compatible with this change. Fixes #768.