aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t0677-old.scala
blob: fde0aac9fd73b246a77de1443b3bfa55556422ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
@deprecated("Suppress warnings", since="2.11")
object Test extends dotty.runtime.LegacyApp {
  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")
}