aboutsummaryrefslogblamecommitdiff
path: root/tests/run/t4013c.scala
blob: 3b0d87574bc58129f58761b12a7371e1db84c7d3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                     
class Suba[@specialized(Int) B](val data: Array[B]) {
  assert(data != null)
}


object Test {
  def main(args: Array[String]): Unit = {
    new Suba[Int](Array(0))
  }
}