Files
kotlin/compiler/testData/codegen/boxWithJava/sam/adapters/nonLiteralRunnable.kt
2013-07-02 14:06:09 +04:00

6 lines
99 B
Kotlin

fun box(): String {
var v = "FAIL"
val f = { v = "OK" }
JavaClass.run(f)
return v
}