Don't remove nullability assertions of anonymous object transformation

#KT-19910 Fixed
This commit is contained in:
Mikhael Bogdanov
2017-09-01 15:02:36 +02:00
parent 599113b30f
commit 1cf8ee9433
4 changed files with 61 additions and 3 deletions
@@ -0,0 +1,39 @@
// 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: IllegalArgumentException) {
return "OK"
}
return "fail: exception expected"
}