compiler/testData/codegen/box/closures/kt2151.kt (
10
lines of code) (
raw
):
fun foo(): String { return if (true) { var x = "OK" fun foo() { x += "fail" } x } else "fail" } fun box(): String { return foo() }