summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
Diffstat (limited to 'test/files')
-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
+ }
+}