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

8 lines
119 B
Kotlin
Vendored

import test.*
fun box() : String {
val call = call(A(11), A::calc)
return if (call == 11) "OK" else "fail"
}