e0b6f12737
AbstractCompileKotlinAgainstMultifileKotlinTest is broken in this commit; will be fixed later
24 lines
259 B
Kotlin
Vendored
24 lines
259 B
Kotlin
Vendored
// 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
|
|
}
|