summaryrefslogtreecommitdiff
path: root/test/files/run/t0325.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t0325.scala')
-rw-r--r--test/files/run/t0325.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t0325.scala b/test/files/run/t0325.scala
index 92331ab05f..048303206c 100644
--- a/test/files/run/t0325.scala
+++ b/test/files/run/t0325.scala
@@ -24,7 +24,7 @@ object Test {
else
println(ret)
} catch {
- case e@_ => println(which + " failed with " + e.getClass)
+ case e: Throwable => println(which + " failed with " + e.getClass)
}
}