summaryrefslogtreecommitdiff
path: root/test/files/pos/t4188.scala
blob: 40e7d4924e36607592d8984a29763dcbac80493f (plain) (blame)
1
2
3
4
5
6
class A {
  object Ding
  class B {
    (null: Any) match { case _: Ding.type => () }
  }
}