Files
kotlin-fork/compiler/testData/codegen/box/invokedynamic/sam/boundReference.kt
T
Dmitry Petrov 3140cca050 JVM_IR indy-SAM conversions, 1st passing tests
KT-44278 KT-26060 KT-42621
2021-01-29 12:59:45 +03:00

23 lines
306 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// JVM_TARGET: 1.8
// SAM_CONVERSIONS: INDY
fun interface KRunnable {
fun run()
}
fun runIt(kr: KRunnable) {
kr.run()
}
class C(var value: String) {
fun fn() {
value = "OK"
}
}
fun box(): String {
val c = C("xxx")
runIt(c::fn)
return c.value
}