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












                                           
trait U {
  private val priv = 0
  type TT = U with T // should allow `priv`
  (??? : TT).priv
}

trait Base {

}

trait T extends Base {

}