Files
kotlin-fork/compiler/testData/codegen/box/syntheticAccessors/kt9717DifferentPackages.kt
T
2019-11-19 11:00:09 +03:00

25 lines
289 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
// FILE: a.kt
package a
import b.*
fun box(): String {
BB().ok()
return BB().OK
}
// FILE: b.kt
package b
public open class B {
public var OK: String = "OK"
protected set
}
public class BB : B() {
public fun ok(): String = OK
}