Files
kotlin-fork/compiler/testData/codegen/regressions/kt1739.kt
T
2012-08-04 22:58:33 +03:00

11 lines
221 B
Kotlin

public class RunnableFunctionWrapper(val f : () -> Unit) : Runnable {
public override fun run() {
f()
}
}
fun box() : String {
var res = ""
RunnableFunctionWrapper({ res = "OK" }).run()
return res
}