Files
kotlin-fork/compiler/testData/codegen/boxInline/noInline/2.kt
T
2014-03-03 15:43:35 +04:00

4 lines
115 B
Kotlin

inline fun calc(s: (Int) -> Int, noinline p: (Int) -> Int) : Int {
val z = p
return s(11) + z(11) + p(11)
}