summaryrefslogtreecommitdiff
path: root/test/pending/run/array_casts.scala
blob: 0691fe06fe70da494da77f72bdcba29b12ff1ae7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
object Test {
   val a = Array(10)
   def main(args : Array[String]) : Unit = {
     val a = this.a : AnyRef
     Console.println("is object - " + a.isInstanceOf[Object])
     Console.println("is seq - " + a.isInstanceOf[Seq[_]])
     Console.println("is collection - " + a.isInstanceOf[Collection[_]])
     Console.println("is random-access-seq - " + a.isInstanceOf[RandomAccessSeq[_]])
     Console.println("is random-access-seq-mutable - " + a.isInstanceOf[RandomAccessSeq.Mutable[_]])
     Console.println("not string - " + !a.isInstanceOf[String])
     Console.println("not list - " + !a.isInstanceOf[List[_]])
     try {
       Console.println(a.asInstanceOf[Object].getClass)
     } catch { case ex : ClassCastException => Console.println("Bad, arrays should be objects") }
     try {
       Console.println(a.asInstanceOf[Seq[_]])
     } catch { case ex : ClassCastException => Console.println("Bad, arrays should be seqs") }
     try {
       Console.println(a.asInstanceOf[Collection[_]])
     } catch { case ex : ClassCastException => Console.println("Bad, arrays should be collections") }
     try {
       Console.println(a.asInstanceOf[RandomAccessSeq[_]])
     } catch { case ex : ClassCastException => Console.println("Bad, arrays should be random access seqs") }
     try {
       Console.println(a.asInstanceOf[RandomAccessSeq.Mutable[_]])
     } catch { case ex : ClassCastException => Console.println("Bad, arrays should be mutable random access seqs") }
     try {
       Console.println("not expected: " + a.asInstanceOf[List[_]])
     } catch { case ex : ClassCastException => Console.println("Good, arrays are not lists") }
     try {
       Console.println("not expected: " + a.asInstanceOf[runtime.RichString])
       throw new Error("not expected")
     } catch { case ex : ClassCastException => Console.println("Good, arrays are not rich strings") }
     // check that arrays as seqs are still dynamically typed as arrays
     val s = this.a : Seq[Int]
     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") }
     ()
   }
}