summaryrefslogtreecommitdiff
path: root/test/files/pos/t7551/T.scala
blob: 017926e0e28e2f6ee9a22e4c1b925309141b7fb0 (plain) (blame)
1
2
3
4
5
6
7
8
9
package p

@A(subInterface = classOf[T.S])
trait T {
}

object T {
  private[p] trait S extends T { }
}