summaryrefslogtreecommitdiff
path: root/test/files/pos/t1439.scala
blob: ae1fdd10b5e8a9eef9428689c42f97b9e06113fd (plain) (blame)
1
2
3
4
5
6
7
class View[C[A]] {}

object Test {
  null match {
    case v: View[_] =>
  }
}