aboutsummaryrefslogblamecommitdiff
path: root/tests/run/multi-array.scala
blob: ff8b8ff2e661d1d2f17d4e6ce0090567340f763d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                                            
object Test extends dotty.runtime.LegacyApp {
  val a = Array(1, 2, 3)
  println(a.deep.toString)

  val aaiIncomplete = new Array[Array[Array[Int]]](3)
  println(aaiIncomplete(0))

  val aaiComplete: Array[Array[Int]] = Array.ofDim[Int](3, 3) // new Array[Array[Int]](3, 3)
  println(aaiComplete.deep)
  for (i <- 0 until 3; j <- 0 until 3)
    aaiComplete(i)(j) = i + j
  println(aaiComplete.deep.toString)
  assert(aaiComplete.last.last == 4)
}