Files
kotlin-fork/compiler/testData/codegen/boxInline/capture/captureThisAndReceiver.2.kt
T
2014-07-07 10:51:46 +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)
}