JVM_IR: set dispatchReceiverParameter of imported JvmStatic object methods to null

This commit is contained in:
Georgy Bronnikov
2019-09-12 19:50:03 +03:00
parent c7904b273f
commit 4920d71d70
8 changed files with 75 additions and 11 deletions
@@ -0,0 +1,21 @@
// TARGET_BACKEND: JVM
// WITH_RUNTIME
// FILE: 1.kt
fun box(): String {
if (A.test() != "OK") return "fail 1"
return "OK"
}
// FILE: 2.kt
object A {
@JvmStatic fun test(b: String = "OK") : String {
return b
}
}