summaryrefslogtreecommitdiff
path: root/test/files/neg/check-dead.check
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-12-15 08:11:41 +0000
committerPaul Phillips <paulp@improving.org>2010-12-15 08:11:41 +0000
commit9f08c98a6e801d4798cb5c3794cab23deb6d9eec (patch)
tree239d2bde0c2c8b6bf9331387b8549e4be060a6a0 /test/files/neg/check-dead.check
parent69aa78bd1bc593f878e44b2abde61dbb56391204 (diff)
downloadscala-9f08c98a6e801d4798cb5c3794cab23deb6d9eec.tar.gz
scala-9f08c98a6e801d4798cb5c3794cab23deb6d9eec.tar.bz2
scala-9f08c98a6e801d4798cb5c3794cab23deb6d9eec.zip
Stops barking up the wrong tree with -Ywarn-dea...
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.
Diffstat (limited to 'test/files/neg/check-dead.check')
-rw-r--r--test/files/neg/check-dead.check16
1 files changed, 11 insertions, 5 deletions
diff --git a/test/files/neg/check-dead.check b/test/files/neg/check-dead.check
index be4de3060b..29601c1d4a 100644
--- a/test/files/neg/check-dead.check
+++ b/test/files/neg/check-dead.check
@@ -1,7 +1,13 @@
-check-dead.scala:27: error: dead code following this construct
- throw new Exception
+check-dead.scala:7: error: dead code following this construct
+ def z1 = y1(throw new Exception) // should warn
+ ^
+check-dead.scala:10: error: dead code following this construct
+ def z2 = y2(throw new Exception) // should warn
+ ^
+check-dead.scala:29: error: dead code following this construct
+ throw new Exception // should warn
^
-check-dead.scala:31: error: dead code following this construct
- throw new Exception
+check-dead.scala:33: error: dead code following this construct
+ throw new Exception // should warn
^
-two errors found
+four errors found