summaryrefslogblamecommitdiff
path: root/test/files/neg/t7475e.scala
blob: e5c4877d6eb1b1b56cf01dd310f4b6a6566a7634 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                             
trait U {
}

trait Base {
  private val priv = 0

  type TT = U with T // should exclude `priv`
  (??? : TT).priv
}

trait T extends Base {
}