summaryrefslogtreecommitdiff
path: root/test/files/neg/t7870.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-7870 Detect default getter clashes in constructorsJason Zaugg2013-09-231-0/+3
Default getters for constructors live in the companion module. These eluded the check for clashes in default getter names due to overloading, which aims to give a more user friendly error than "double definition: meth$default$1". This commit checks for default getters in the companion module, in addition to those in the template itself.