summaryrefslogtreecommitdiff
path: root/test/files/run/t0677-old.scala
blob: 6c8a3a7e99bae1d7916af4200d986389c5a55d94 (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")
}