summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2016-06-14 12:34:05 +1000
committerGitHub <noreply@github.com>2016-06-14 12:34:05 +1000
commit91b6944480a3b37f1d62a8a2ed3c332ce02a835a (patch)
tree5288913280c1fc5ca7582f087ed2b2e016393cc5 /test
parentab06ce852d0098131a3b798d80e5a5deb5f7b2ac (diff)
parent3f3a3bb57499fb919e798d03bbc4e84ede8e55d6 (diff)
downloadscala-91b6944480a3b37f1d62a8a2ed3c332ce02a835a.tar.gz
scala-91b6944480a3b37f1d62a8a2ed3c332ce02a835a.tar.bz2
scala-91b6944480a3b37f1d62a8a2ed3c332ce02a835a.zip
Merge pull request #5219 from som-snytt/issue/9245
SI-9245 Fresher name in Try and test
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
+ }
+}