Files
kotlin/compiler/testData/codegen/boxInline/simple/severalUsage.2.kt
2014-07-07 10:51:46 +04:00

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
}