Files
kotlin-fork/compiler/testData/codegen/boxInline/captureThisAndReceiver/2.kt
T
2014-03-03 15:43:35 +04:00

7 lines
98 B
Kotlin

class My(val value: Int)
inline fun <T, R> T.perform(job: (T)-> R) : R {
return job(this)
}