50ff2a3ad2
otherwise callable references to stdlib functions will not work in the migration scheme.
5 lines
111 B
Kotlin
Vendored
5 lines
111 B
Kotlin
Vendored
fun doStuff(fn: String.() -> String) = "ok".fn()
|
|
|
|
fun box(): String {
|
|
return doStuff(String::toUpperCase)
|
|
} |