summaryrefslogtreecommitdiff
path: root/test/files/pos/t6022.scala
blob: 522c3352c76cb8d3b4c91e8bc5e904f138a90b77 (plain) (blame)
1
2
3
4
5
6
7
class Test {
  (null: Any) match {
    case x: AnyRef if false =>
    case list: Option[_] =>
    case product: Product => // change Product to String and it's all good
  }
}