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

8 lines
98 B
Kotlin

class Inline {
inline fun calc(s: (Int) -> Int, p: Int) : Int {
return s(p)
}
}