Files
kotlin-fork/compiler/testData/codegen/box/invokedynamic/lambdas/kt52875.kt
T

7 lines
102 B
Kotlin
Vendored

// LAMBDAS: INDY
fun appendTo(s: String) =
fun Any?.() = s + this
fun box() = appendTo("O")("K")