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