summaryrefslogtreecommitdiff
path: root/test/pending/run/array_casts.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/array_casts.scala')
-rw-r--r--test/pending/run/array_casts.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pending/run/array_casts.scala b/test/pending/run/array_casts.scala
index 9d298bbc2b..0691fe06fe 100644
--- a/test/pending/run/array_casts.scala
+++ b/test/pending/run/array_casts.scala
@@ -36,7 +36,7 @@ object Test {
Console.println("is-seq array " + s.isInstanceOf[Array[Char]])
try {
Console.println(s.asInstanceOf[Array[Int]].getClass)
- } catch { case ex : ClassCastException => Console.println("Bad, arrays as seqs should still be arrays of int") }
+ } catch { case ex : ClassCastException => Console.println("Bad, arrays as seqs should still be arrays of Int") }
()
}
}