JVM IR: Fix special bridge generation with external Kotlin dependencies

This commit is contained in:
Steven Schäfer
2020-08-14 14:55:46 +02:00
committed by Alexander Udalov
parent 730e07c52a
commit 6100166185
4 changed files with 29 additions and 1 deletions
@@ -0,0 +1,18 @@
// WITH_RUNTIME
// FILE: A.kt
package a
open class A : ArrayList<String>()
// FILE: B.kt
import a.A
class B : A()
fun box(): String {
val b = B()
b += "OK"
return b.single()
}