mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
11 lines
172 B
Kotlin
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
|
|
} |