summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@gmail.com>2016-06-19 13:52:26 +0200
committerLukas Rytz <lukas.rytz@gmail.com>2016-06-19 13:52:26 +0200
commitb3283669e05dc706274e944ffd3750892c16e4dd (patch)
tree13b8ce0c0d997276475c94bcb2b4a4709ebdb5ce /test
parente9afc2d8a070584d2784aefd63c4b54fe9e1b69b (diff)
parent91b6944480a3b37f1d62a8a2ed3c332ce02a835a (diff)
downloadscala-b3283669e05dc706274e944ffd3750892c16e4dd.tar.gz
scala-b3283669e05dc706274e944ffd3750892c16e4dd.tar.bz2
scala-b3283669e05dc706274e944ffd3750892c16e4dd.zip
Merge commit '91b6944' into merge-2.11-to-2.12-june-19
Diffstat (limited to 'test')
-rw-r--r--test/files/pos/t9245.scala27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/files/pos/t9245.scala b/test/files/pos/t9245.scala
new file mode 100644
index 0000000000..87bc1fa0ef
--- /dev/null
+++ b/test/files/pos/t9245.scala
@@ -0,0 +1,27 @@
+
+/*
+Was:
+test/files/pos/t9245.scala:5: error: recursive value catchExpr1 needs type
+ try {} catch catchExpr1
+ ^
+
+Now:
+ def catchExpr1: PartialFunction[Throwable,Any] = scala.this.Predef.???;
+ def test: Any = try {
+ ()
+ } catch {
+ case (x$1 @ (_: Throwable)) => {
+ <artifact> val catchExpr$1: PartialFunction[Throwable,Any] = Test.this.catchExpr1;
+ if (catchExpr$1.isDefinedAt(x$1))
+ catchExpr$1.apply(x$1)
+ else
+ throw x$1
+ }
+ }
+*/
+trait Test {
+ def catchExpr1: PartialFunction[Throwable, Any] = ???
+ def test = {
+ try {} catch catchExpr1
+ }
+}