Files
kotlin/compiler/testData/codegen/boxWithJava/samAdapters/callAbstractAdapter.kt

11 lines
172 B
Kotlin

class Impl: JavaInterface {
override fun run(r: Runnable?) {
r?.run()
}
}
fun box(): String {
var v = "FAIL"
Impl().run { v = "OK" }
return v
}