summaryrefslogtreecommitdiff
path: root/test/files/run/t3232.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t3232.scala')
-rw-r--r--test/files/run/t3232.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t3232.scala b/test/files/run/t3232.scala
index feff7e7089..4c6cb1e35c 100644
--- a/test/files/run/t3232.scala
+++ b/test/files/run/t3232.scala
@@ -15,7 +15,7 @@ object Test {
// exception required
List(e1, e2) foreach { f =>
try { f() ; assert(false) }
- catch { case _ => () }
+ catch { case _: Throwable => () }
}
}
}