JVM IR: Fix special bridge generation with external Kotlin dependencies
This commit is contained in:
committed by
Alexander Udalov
parent
730e07c52a
commit
6100166185
@@ -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()
|
||||
}
|
||||
Reference in New Issue
Block a user