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

11 lines
158 B
Kotlin
Vendored

package test
class A(val z: Int) {
fun calc() = z
fun test() = call(A(z), ::calc)
}
inline fun call(p: A, s: A.() -> Int): Int {
return p.s()
}