summaryrefslogtreecommitdiff
path: root/test/files/neg/check-dead.check
Commit message (Collapse)AuthorAgeFilesLines
* Stops barking up the wrong tree with -Ywarn-dea...Paul Phillips2010-12-151-5/+11
| | | | | | | | | | | | | Stops barking up the wrong tree with -Ywarn-dead-code. The origin of its issues was twofold: 1) synchronized acts by-name without being by-name (ticket #4086) 2) warnings are swallowed if context.reportGeneralErrors is false Those two plus a dash of bitrot. In any case it's at its all time happiest now. It found all the dead code related fixes in this commit. Way to go, -Ywarn-dead-code! Review by odersky.
* Fixed various issues with -Ywarn-dead-code.Paul Phillips2010-12-141-0/+7
enjoy fewer spurious warnings. Closes #1681, no review.