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

21 lines
230 B
Kotlin
Vendored

// WITH_RUNTIME
// MODULE: lib
// FILE: A.kt
package a
open class A : ArrayList<String>()
// MODULE: main(lib)
// FILE: B.kt
import a.A
class B : A()
fun box(): String {
val b = B()
b += "OK"
return b.single()
}