aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0093.scala
blob: d648d773b08c33345aaddfb49b7ef2567bdae489 (plain) (blame)
1
2
3
4
object Bug {
  def f(cond: => Boolean) = while (cond == false) {};
  // no bug with "false == cond"
}