Files
kotlin-fork/compiler/testData/codegen/box/callableReference/kt50172.kt
T

12 lines
178 B
Kotlin
Vendored

// WITH_STDLIB
fun g(s: String): List<String> {
fun f(x: String): String = x + "K"
val f = f(s)
return listOf(s).map(::f)
}
fun box(): String =
g("O").first()