summaryrefslogtreecommitdiff
path: root/test/files/run/ctries-old/main.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/ctries-old/main.scala')
-rw-r--r--test/files/run/ctries-old/main.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/ctries-old/main.scala b/test/files/run/ctries-old/main.scala
index f714bcdcdc..77161fed2f 100644
--- a/test/files/run/ctries-old/main.scala
+++ b/test/files/run/ctries-old/main.scala
@@ -38,7 +38,7 @@ trait Spec {
var produced = false
try body
catch {
- case e: Throwable => if (e.getClass == implicitly[ClassManifest[T]].erasure) produced = true
+ case e: Throwable => if (e.getClass == implicitly[ClassManifest[T]].runtimeClass) produced = true
} finally {
assert(produced, "Did not produce exception of type: " + implicitly[ClassManifest[T]])
}