Files
kotlin-fork/compiler/testData/compileKotlinAgainstKotlin/specialBridgesInDependencies.kt
T
2020-10-02 08:57:55 +03:00

20 lines
224 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
// 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()
}