summaryrefslogtreecommitdiff
path: root/test/files/pos/t6184.scala
blob: 83a1306acaf5f00d48fb7164c1f749c3befacb23 (plain) (blame)
1
2
3
4
5
6
7
trait Foo[TroubleSome] {
  type T <: Foo[TroubleSome]

  this match {
    case e: Foo[_]#T => ???
  }
}