Files
kotlin-fork/compiler/testData/compileKotlinAgainstKotlin/specialBridgesInDependencies.kt
T

19 lines
194 B
Kotlin
Vendored

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