summaryrefslogtreecommitdiff
path: root/test/files/pos/t5769.scala
blob: 523fe08a6080039e72f24c2102758f93b4eead4a (plain) (blame)
1
2
3
4
5
6
7
8
9
// a.scala
import scala.reflect.{ArrayTag, arrayTag}

class A {
  type AI = Array[Int]

  def f1 = arrayTag[Array[Int]]
  def f2 = arrayTag[AI]
}