summaryrefslogtreecommitdiff
path: root/test/files/pos/t1545.scala
blob: d7c024572572272459adc62f095c5487d0accadd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
object Main extends Application {

    case class Foo (field : Option[String])

    val x : PartialFunction[Foo,Int] =
        {
            c => c.field match {
                case Some (s) => 42
                case None     => 99
            }
        }

    println (x (Foo (None))) // prints 99
    println (x (Foo (Some ("foo")))) // prints 42

}