summaryrefslogtreecommitdiff
path: root/test/files/pos/t5413.scala
blob: 47af514a140db6461483b88a6462d720ca093d43 (plain) (blame)
1
2
3
4
5
6
7
8
9
object Fail {
  def nom (guard : => Boolean) (something : => Unit) { }
  def main(args: Array[String]) {
    nom {
      val i = 0
      (i != 3)
    }()
  }
}