// WITH_DEFAULT_VALUE: false fun foo(a: Int): Int { fun Int.bar(n: Int) = this + n return (a bar 1) * 2 } fun test() { foo(2) }