fun test() { var x = 0 consume(x) while (cond()) { consume(++x) } } fun cond(): Boolean = true fun consume(n: Int) {}