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