Files
kotlin/compiler/testData/codegen/boxWithJava/samAdapters/cantCallInherited.kt
2013-05-06 16:45:36 +04:00

8 lines
131 B
Kotlin

fun box(): String {
var r = "FAIL"
val sub = Sub()
sub.safeInvoke(null)
sub.safeInvoke { r = "OK" }
return r
}