aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t3411.scala
blob: 6d46be4e4415c85562e580f3019ee645e4237880 (plain) (blame)
1
2
3
4
5
6
7
8
object A  {
  def g(c: PartialFunction[Any,Unit]): Unit = {}

  def f: Unit = {
    lazy val x = 0
    g { case `x` => }
  }
}