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