Files
kotlin-fork/compiler/testData/codegen/box/javaFieldAndKotlinProperty/javaInvisibleFieldAndKotlinPropertyReference.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

25 lines
354 B
Kotlin
Vendored

// TARGET_BACKEND: JVM_IR
// Field VS property: case "reference", field is invisible
// FILE: base/BaseJava.java
package base;
public class BaseJava {
String a = "FAIL";
}
// FILE: Derived.kt
package derived
import base.BaseJava
class Derived : BaseJava() {
val a = "OK"
}
fun box(): String {
val d = Derived()
return d::a.get()
}