aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t2484.scala
Commit message (Collapse)AuthorAgeFilesLines
* Replace tabs with 4 spaces in Dotty tests.Dmitry Petrashko2015-04-091-0/+0
|
* Make ElimByName change owners of by-name parametersMartin Odersky2014-08-181-0/+21
| | | | | | | | | By-name parameters did not have their owner changed before. This was not noticed in treecheck because the method generated for the closure did not have its Method flag set by accident, so owmer checking ignored the new val. Once the Methgod flag was set, owner checking failed. Once changeOwner was added, a whole lot of other things failed, which led to the fixes in the previous commits.
* Fix of pos/t2454Martin Odersky2014-05-301-0/+19
"_" type paraeters need to be given fresh names.