Files
kotlin-fork/compiler/testData/codegen/box/invokedynamic/lambdas/nullabilityAssertions.kt
T
Dmitry Petrov 5013344bc4 JVM_IR nullability assertions test for indy lambdas
KT-44278 KT-26060 KT-42621
2021-02-12 16:52:32 +03:00

25 lines
481 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// JVM_TARGET: 1.8
// LAMBDAS: INDY
// WITH_RUNTIME
// FILE: nullabilityAssertions.kt
fun box(): String {
val fn: (String) -> String = { it }
try {
J.test(fn)
} catch (e: NullPointerException) {
return "OK"
}
return "Should throw NullPointerException"
}
// FILE: J.java
import kotlin.jvm.functions.Function1;
public class J {
public static void test(Function1<String, String> fn) {
fn.invoke(null);
}
}