Files
kotlin/compiler/testData/codegen/boxAgainstJava/inline/kt19910.kt
Mikhail Zarechenskiy 5c5635ce20 Fix codegen & bytecode tests after unifying exceptions in JVM backend
See KT-22275 for details
2020-01-20 16:36:03 +03:00

39 lines
768 B
Kotlin
Vendored

// FILE: J.java
// FULL_JDK
// WITH_RUNTIME
// TARGET_BACKEND: JVM
public class J {
public interface Consumer {
void accept(String p);
}
public static void invokeWithNull(Consumer x) {
x.accept(null);
}
}
// FILE: Kotlin.kt
inline fun makeRunnable(crossinline lambda: () -> Unit) =
object : Runnable {
override fun run() {
lambda()
}
}
fun box(): String {
try {
makeRunnable {
J.invokeWithNull(object : J.Consumer {
override fun accept(t: String) {
println(t)
}
})
}.run()
} catch (e: NullPointerException) {
return "OK"
}
return "fail: exception expected"
}