summaryrefslogtreecommitdiff
path: root/test/files/run/t0677.scala
blob: 131fcc24a6b40b967d81d8ad8b7bc8303b9134e1 (plain) (blame)
1
2
3
4
5
6
7
8
object Test extends App {
  class X[T: ClassManifest] {
    val a = Array.ofDim[T](3, 4)
  }
  val x = new X[String]
  x.a(1)(2) = "hello"
  assert(x.a(1)(2) == "hello")
}