summaryrefslogtreecommitdiff
path: root/test/files/pos/t8040.scala
Commit message (Collapse)AuthorAgeFilesLines
* SD-363 Xlint no warn deprecated params, defaultsSom Snytt2017-04-061-0/+5
| | | | | | | Deprecation is an escape hatch for unused params. Since default arg getters receive values of previous args, don't warn when they are unused.
* SI-8040 No warn DummyImplicitSom Snytt2017-03-111-0/+2
| | | | It's just a dummy.
* SI-8040 Xlint enables unused warningsSom Snytt2017-03-111-0/+6
`-Ywarn-unused-import` is deprecated in favor of `-Ywarn-unused:imports`. `-Xlint` does not yet enable `-Ywarn-unused:patvars`. But the default for `-Ywarn-unused` is everything, including `patvars`. So `-Xlint:unused` is the populist option, `-Ywarn-unused` more exclusive. Tests are fixed by narrowing scope of `-Xlint` when specified.