aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/lookuprefined.scala
blob: f7e7f7337f451b99aa5cc22138eef0614c580390 (plain) (blame)
1
2
3
4
5
6
7
8
class C { type T; type U }

trait Test {

  val x: (C { type U = T } { type T = String }) # U
  val y: String = x

}