mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
11 lines
174 B
Kotlin
Vendored
11 lines
174 B
Kotlin
Vendored
public inline fun <R> runTest(f: () -> R): R {
|
|
return f()
|
|
}
|
|
|
|
public inline fun <R> minByTest(f: (Int) -> R): R {
|
|
var minValue = f(1)
|
|
val v = f(1)
|
|
return v
|
|
}
|
|
|