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

13 lines
190 B
Kotlin

package test
public class Data(val value: Int)
public class Input(val d: Data) {
public fun data() : Int = 100
}
public inline fun <R> use(block: ()-> R) : R {
return block()
}