summaryrefslogtreecommitdiff
path: root/test/files/pos/bug1560.scala
blob: 700252328f120d3218229195eeeab51fd2a28e0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
object Test extends Application {
  trait C[T] {
    def t: T
  }

  def b: Option[C[_]] = null

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