3d17ce05b5
#KT-36345 Fixed
14 lines
247 B
Kotlin
Vendored
14 lines
247 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
// KT-9277 Unexpected NullPointerException in an invocaton with named arguments
|
|
|
|
fun box(): String {
|
|
foo(null)
|
|
|
|
return "OK"
|
|
}
|
|
|
|
fun foo(x : Int?){
|
|
bar(z = x ?: return, y = x)
|
|
}
|
|
|
|
fun bar(y : Int, z : Int) {} |