// WITH_DEFAULT_VALUE: false fun foo(a: Int, b: Int): Int { return a * b / 2 } fun test() { var x = 1 foo(++x, x++) }