Files
kotlin-fork/compiler/testData/codegen/box/closures/captureExtensionReceiverX2.kt
T
2019-11-19 11:00:09 +03:00

8 lines
150 B
Kotlin
Vendored

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