7 lines
87 B
Kotlin
Vendored
7 lines
87 B
Kotlin
Vendored
package test
|
|
|
|
|
|
inline fun <R> call(crossinline f: () -> R) : R {
|
|
return {f()} ()
|
|
}
|