Files
kotlin/compiler/testData/codegen/boxInline/callableReference/topLevel.1.kt
Michael Bogdanov e200b97ca4 Inline callable references
#KT-6900 Fixed
2015-04-13 16:11:21 +03:00

9 lines
137 B
Kotlin
Vendored

import test.*
fun box() : String {
return if (call(10, ::calc) == 5) "OK" else "fail"
}
fun calc(p: Int) : Int {
return p / 2
}