aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t1439.scala
blob: 0efcc74b654526e102972286799c39530ebb1cb0 (plain) (blame)
1
2
3
4
5
6
7
8
// no unchecked warnings
class View[C[A]] { }

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