summaryrefslogtreecommitdiff
path: root/test/files/run/t5300.scala
blob: 073b29604aa0fd8a706834cce303e848587ef5b7 (plain) (blame)
1
2
3
4
5
6
7
object Test {
  val pf: PartialFunction[Any, Unit] = { case _ => () }
  
  def main(args: Array[String]): Unit = {
    pf orElse pf
  }
}