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

5 lines
86 B
Kotlin

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