summaryrefslogtreecommitdiff
path: root/test/files/pos/t1053.scala
blob: 1d4dfb637e99b0c0d50433c85a350efcc82036fc (plain) (blame)
1
2
3
4
5
6
trait T[A] { trait U { type W = A; val x = 3 } }

object Test {
  val x : ({ type V = T[this.type] })#V = null
  val y = new x.U { }
}