summaryrefslogtreecommitdiff
path: root/test/files/neg/catch-all.check
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2012-06-30 09:13:05 +0200
committerJason Zaugg <jzaugg@gmail.com>2012-06-30 09:13:05 +0200
commita3315cdcf6ca2714e563eb813b645e267ba2ea5a (patch)
tree1c8b36ad1385ef8a397b0752b2bc9fc08b9c3c52 /test/files/neg/catch-all.check
parentcd1e6f94e92f2c8fc79aa3c76b1e3b813182e2d3 (diff)
downloadscala-a3315cdcf6ca2714e563eb813b645e267ba2ea5a.tar.gz
scala-a3315cdcf6ca2714e563eb813b645e267ba2ea5a.tar.bz2
scala-a3315cdcf6ca2714e563eb813b645e267ba2ea5a.zip
SI-2807 Avoid catch all warning for Stable Id patterns
Diffstat (limited to 'test/files/neg/catch-all.check')
-rw-r--r--test/files/neg/catch-all.check12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/files/neg/catch-all.check b/test/files/neg/catch-all.check
index ab3d28777d..62f895cc7e 100644
--- a/test/files/neg/catch-all.check
+++ b/test/files/neg/catch-all.check
@@ -1,10 +1,10 @@
catch-all.scala:2: error: This catches all Throwables. If this is really intended, use `case _ : Throwable` to clear this warning.
- try { "warn" } catch { case _ => }
- ^
+ try { "warn" } catch { case _ => }
+ ^
catch-all.scala:4: error: This catches all Throwables. If this is really intended, use `case x : Throwable` to clear this warning.
- try { "warn" } catch { case x => }
- ^
+ try { "warn" } catch { case x => }
+ ^
catch-all.scala:6: error: This catches all Throwables. If this is really intended, use `case x : Throwable` to clear this warning.
- try { "warn" } catch { case _: RuntimeException => ; case x => }
- ^
+ try { "warn" } catch { case _: RuntimeException => ; case x => }
+ ^
three errors found