Files
kotlin/compiler/testData/codegen/boxAgainstJava/sam/adapters/nonLiteralInConstructor.kt
2014-06-26 20:57:40 +04:00

6 lines
101 B
Kotlin

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