aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0091.scala
blob: 414e2c931ab7f954d182868a72656915c6ae2e31 (plain) (blame)
1
2
3
4
5
6
class Bug {
  def main(args: Array[String]) = {
    var msg: String = null;
    val f:  PartialFunction[Any, Unit] = { case 42 => msg = "coucou" };
  }
}