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

9 lines
149 B
Kotlin
Vendored

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