aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t7475b.scala
blob: a34743b8be5c2b66610b0bcac1ccc6e045a1190c (plain) (blame)
1
2
3
4
5
6
7
8
trait U {
}

trait T {
  type TT = Any with T with U
  private val priv = 0
  (??? : TT).priv
}