blob: 433442c5a46664e40b510d9a21705e9f50dd61f4 [file]
class My(val value: Int)
inline fun <T, R> T.perform(job: (T)-> R) : R {
return job(this)
}