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

4 lines
83 B
Kotlin

fun box(): String {
val f: (() -> Unit)? = null
return JavaClass.run(f)!!
}