Files
kotlin-fork/compiler/testData/codegen/box/compileKotlinAgainstKotlin/specialBridgesInDependencies.kt
T
Pavel Punegov c42c918e66 [K/N][test] Ignore test ^KT-42723
ArrayList is a final type in Native
2022-01-10 09:01:03 +00:00

22 lines
255 B
Kotlin
Vendored

// IGNORE_BACKEND: NATIVE
// WITH_STDLIB
// 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()
}