82af3dd6ae
To help them run on the old infrastructure, which light analysis tests are still using.
25 lines
354 B
Kotlin
Vendored
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()
|
|
}
|