aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/neg/i533/Compat.scala
blob: 16613cf5b9a895c97abfb9b159f4a00279b28944 (plain) (blame)
1
2
3
4
5
6
7
object Compat {
  def main(args: Array[String]): Unit = {
    val x = new Array[Int](1)
    x(0) = 10
    println(JA.get(x))
  }
}