summaryrefslogtreecommitdiff
path: root/test/files/neg/nonlocal-warning.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/nonlocal-warning.check')
-rw-r--r--test/files/neg/nonlocal-warning.check3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/files/neg/nonlocal-warning.check b/test/files/neg/nonlocal-warning.check
index 67b3b10095..5202df655a 100644
--- a/test/files/neg/nonlocal-warning.check
+++ b/test/files/neg/nonlocal-warning.check
@@ -1,5 +1,4 @@
-nonlocal-warning.scala:4: warning: This catches all Throwables, which often has undesirable consequences.
-If intentional, use `case x : Throwable` to clear this warning.
+nonlocal-warning.scala:4: warning: This catches all Throwables. If this is really intended, use `case x : Throwable` to clear this warning.
catch { case x => 11 }
^
nonlocal-warning.scala:2: warning: catch block may intercept non-local return from method foo