summaryrefslogtreecommitdiff
path: root/test/files/neg/warn-unused-privates.scala
Commit message (Collapse)AuthorAgeFilesLines
* Expanded unused warnings.Paul Phillips2012-11-031-3/+50
| | | | | | | | Now warns on unused private and local terms and types. In addition it warns when a local var is read-only past the point of its creation - something I never would have guessed would be such a gold mine. Over 100 vars in trunk turn into vals.
* Warn about unused private members.Paul Phillips2012-11-011-0/+58
Warnings enabled via -Xlint. It's one of the most requested features. And it is hard to argue we don't need it: see the 99 methods removed in the next commit. This should close SI-440.