summaryrefslogtreecommitdiff
path: root/test/files/run/t5629b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t5629b.scala')
-rw-r--r--test/files/run/t5629b.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t5629b.scala b/test/files/run/t5629b.scala
index 6c908081b9..adb9ca5498 100644
--- a/test/files/run/t5629b.scala
+++ b/test/files/run/t5629b.scala
@@ -33,7 +33,7 @@ object Test extends App {
val pf = newPF(1)
println("=== pf(1):")
- try { pf(1) } catch { case x => println(x) }
+ try { pf(1) } catch { case x: Throwable => println(x) }
println("=== pf(42):")
pf(42)
println("=== done")