bf1a00c73a
There is introduced algorithm of resolution with jumps: before resolution of some class we resolve all status of members of its supertypes, so we can properly determine inherited visibility and modifiers
20 lines
391 B
Plaintext
Vendored
20 lines
391 B
Plaintext
Vendored
FILE: C.kt
|
|
public final class C : R|B| {
|
|
public constructor(): R|C| {
|
|
super<R|B|>()
|
|
}
|
|
|
|
public final override fun foo(): R|kotlin/Unit| {
|
|
}
|
|
|
|
}
|
|
FILE: A.kt
|
|
public abstract class A : R|kotlin/Any| {
|
|
public constructor(): R|A| {
|
|
super<R|kotlin/Any|>()
|
|
}
|
|
|
|
public abstract fun foo(): R|kotlin/Unit|
|
|
|
|
}
|