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

4 lines
83 B
Kotlin

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