summaryrefslogtreecommitdiff
path: root/test/files/neg/warn-unused-privates.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-8398 - unused warning reports lazy val as a methodKonstantin Fedorov2014-09-101-18/+21
| | | | Compiler internals treat lazy vals as methods. Therefore, we need to have a special case for them when assembling the warning message.
* SI-6120 multiple warnings at same position.Paul Phillips2013-09-271-1/+4
| | | | | An error suppresses all further warnings at the same position, but multiple warnings can be heard.
* Expanded unused warnings.Paul Phillips2012-11-031-8/+41
| | | | | | | | 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/+30
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.