summaryrefslogtreecommitdiff
path: root/test/files/pos/bug1439.scala
blob: 68a7332b2abe1cb81e185c75a63370210d73146f (plain) (blame)
1
2
3
4
5
6
7
8
// no unchecked warnings
class View[C[A]] { }

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