summaryrefslogtreecommitdiff
path: root/test/files/pos/t9245.scala
diff options
context:
space:
mode:
authorSom Snytt <som.snytt@gmail.com>2016-06-07 00:38:01 -0700
committerSom Snytt <som.snytt@gmail.com>2016-06-07 00:38:01 -0700
commit3f3a3bb57499fb919e798d03bbc4e84ede8e55d6 (patch)
tree2534b059102e501140e2d3bf9fc7c76f7ef0e721 /test/files/pos/t9245.scala
parent650fbee7855c7162bf3cf23cb8340704274834d9 (diff)
downloadscala-3f3a3bb57499fb919e798d03bbc4e84ede8e55d6.tar.gz
scala-3f3a3bb57499fb919e798d03bbc4e84ede8e55d6.tar.bz2
scala-3f3a3bb57499fb919e798d03bbc4e84ede8e55d6.zip
SI-9245 Fresher name in Try and test
Fresh name for catcher gets a dollar. "Here, have a dollar." Test due to retronym demonstrates possible conflict. Over the lifetime of the universe, surely at least one code monkey would type in that identifier to catch a banana.
Diffstat (limited to 'test/files/pos/t9245.scala')
-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
+ }
+}