// WITH_DEFAULT_VALUE: false fun foo(a: Int) { } fun bar(a: Int) { foo(a + 1) } fun test() { bar(1) }