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