summaryrefslogtreecommitdiff
path: root/test/files/run/t7139/A_1.scala
blob: eb0eb300daffa167d52784b709ad4f0cf0c4799a (plain) (blame)
1
2
3
4
5
6
7
8
package test {
  object A {
    def apply(n: A) = n
  }
}
package object test {
  type A = Int
}