Files
kotlin/compiler/testData/codegen/boxWithJava/samAdapters/constructor.kt
2013-06-25 20:16:20 +04:00

5 lines
86 B
Kotlin

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