summaryrefslogtreecommitdiff
path: root/test/files/run/pf-catch.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/pf-catch.scala')
-rw-r--r--test/files/run/pf-catch.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/pf-catch.scala b/test/files/run/pf-catch.scala
index dfe43dc750..33982d0557 100644
--- a/test/files/run/pf-catch.scala
+++ b/test/files/run/pf-catch.scala
@@ -8,12 +8,12 @@ object Test {
case x: java.util.NoSuchElementException => shortName(x)
case x: java.lang.IllegalArgumentException => shortName(x)
}
-
+
def fn[T: Handler](body: => T): T = {
try body
catch implicitly[Handler[T]]
}
-
+
def f1 = {
implicit val myHandler = standardHandler
println(fn(Nil.head))
@@ -30,7 +30,7 @@ object Test {
def main(args: Array[String]): Unit = {
try f1
catch { case x: Throwable => println(shortName(x) + " slipped by.") }
-
+
f2
}
}