Files
kotlin-fork/compiler/testData/codegen/box/closures/captureExtensionReceiverX2.kt
T

7 lines
120 B
Kotlin
Vendored

fun String.f(x: String): String {
fun String.g() = { this@f + this@g }()
return x.g()
}
fun box() = "O".f("K")