summaryrefslogtreecommitdiff
path: root/test/files/presentation/partial-fun/src/PartialFun.scala
blob: 4657898ed1ffc01f1283c137b8b45fc104f3a064 (plain) (blame)
1
2
3
4
5
class A {
  def foo {
    val x: PartialFunction[Int, Int] = ({ case 0 => 0 })
  }
}