summaryrefslogtreecommitdiff
path: root/test/files/pos/t7459d.scala
blob: 7843156885c198cfccd4bfbc63fd88964edd7639 (plain) (blame)
1
2
3
4
5
6
7
8
class Test {
  (null: Any) match {
    case s @ Some(_) => ???
    case f @ _ => 
      () => f
      ???
  }
}