JVM_IR nullability assertions test for indy lambdas
KT-44278 KT-26060 KT-42621
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
// 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);
|
||||
}
|
||||
}
|
||||
@@ -3,8 +3,6 @@
|
||||
// SAM_CONVERSIONS: INDY
|
||||
// FILE: nullabilityAssertions.kt
|
||||
fun box(): String {
|
||||
fun justSomeLocalFun() {}
|
||||
|
||||
try {
|
||||
A.bar {}
|
||||
} catch (e: NullPointerException) {
|
||||
|
||||
Reference in New Issue
Block a user