aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t6184.scala
blob: 386399963e30c793a0592da6a37ea935672e8770 (plain) (blame)
1
2
3
4
5
6
7
trait Foo[TroubleSome] {
  type T <: Foo[TroubleSome]

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