summaryrefslogtreecommitdiff
path: root/test/files/pos/t1560.scala
blob: 49cdaaed6a96ab4389552d99603452402a9795f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
object Test extends Application {

  trait C[T] {
    def t: T
  }

  def b: Option[C[x] forSome { type x }] = null

  def c = b match {
    case Some(b) => b.t
  }

}