mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
12 lines
213 B
Kotlin
12 lines
213 B
Kotlin
package zzz
|
|
|
|
import kotlin.InlineOption.*
|
|
|
|
inline fun calc(inlineOptions(ONLY_LOCAL_RETURN) lambda: () -> Int): Int {
|
|
return doCalc { lambda() }
|
|
}
|
|
|
|
fun doCalc(lambda2: () -> Int): Int {
|
|
return lambda2()
|
|
}
|