summaryrefslogtreecommitdiff
path: root/test/files/run/contrib674.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/contrib674.scala')
-rw-r--r--test/files/run/contrib674.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/contrib674.scala b/test/files/run/contrib674.scala
index f6b46d13c6..45c9871fc4 100644
--- a/test/files/run/contrib674.scala
+++ b/test/files/run/contrib674.scala
@@ -5,11 +5,11 @@ object Test extends App {
try {
1
} catch {
- case e =>
+ case e: Throwable =>
} finally {
try {
} catch {
- case e =>
+ case e: Throwable =>
}
}
1