Files
kotlin/compiler/testData/codegen/box/ir/closureConversion/closureConversion3.kt
2018-08-02 09:52:48 +02:00

11 lines
213 B
Kotlin
Vendored

fun foo(x: String): String {
fun bar(y: String): String {
fun qux(z: String): String =
x + y + z
return qux("")
}
return bar("K")
}
fun box(): String =
foo("O")