Files
kotlin/compiler/testData/codegen/box/reflection/functions/functionFromStdlib.kt

8 lines
129 B
Kotlin
Vendored

// WITH_REFLECT
fun doStuff(fn: String.() -> String) = "ok".fn()
fun box(): String {
return doStuff(String::toUpperCase)
}