Files
kotlin-fork/compiler/testData/codegen/box/javaFieldAndKotlinProperty/javaProtectedFieldAnotherPackageReference.kt
T
Alexander Udalov 82af3dd6ae Tests: fix paths of Java sources in codegen tests
To help them run on the old infrastructure, which light analysis tests
are still using.
2023-06-13 17:48:23 +00:00

24 lines
309 B
Kotlin
Vendored

// TARGET_BACKEND: JVM_IR
// FILE: base/BaseJava.java
package base;
public class BaseJava {
protected String a = "OK";
}
// FILE: Derived.kt
package derived
import base.BaseJava
class Derived : BaseJava() {
fun foo() = ::a.get()
}
fun box(): String {
val d = Derived()
return d.foo()
}