fa33c5dc79
Also implement new resolution behavior under language feature ^KT-63076 Fixed ^KT-64358
20 lines
358 B
Kotlin
Vendored
20 lines
358 B
Kotlin
Vendored
// ISSUE: KT-59550
|
|
// FILE: Base.kt
|
|
abstract class Base(private val foo: String) {
|
|
fun getFoo(): String = foo
|
|
}
|
|
|
|
// FILE: Intermediate.java
|
|
public class Intermediate extends Base {
|
|
public Intermediate(String foo) {
|
|
super(foo);
|
|
}
|
|
}
|
|
|
|
// FILE: main.kt
|
|
class Final(val i: Intermediate) : Intermediate(i.foo)
|
|
|
|
fun test(x: Final) {
|
|
x.foo
|
|
}
|