14 lines
232 B
Kotlin
Vendored
14 lines
232 B
Kotlin
Vendored
/*
|
|
* Copy of JVM-backend test
|
|
* Found at: compiler/testData/codegen/boxInline/capture/captureThisAndReceiver.2.kt
|
|
*/
|
|
|
|
package foo
|
|
|
|
class My(val value: Int)
|
|
|
|
inline fun <T, R> T.perform(job: (T)-> R) : R {
|
|
return job(this)
|
|
}
|
|
|