c66fbf5c0e
Previously, statuses of superclass which are not local was not ignored Sometimes it worked in the IDE by calling lazyResolveToPhase which is a violation of the lazy resolution contract ^KT-54890
24 lines
603 B
Plaintext
Vendored
24 lines
603 B
Plaintext
Vendored
FILE: a.kt
|
|
public final fun main(): R|kotlin/Unit| {
|
|
local final class Local : R|B| {
|
|
public constructor(): R|Local| {
|
|
super<R|B|>()
|
|
}
|
|
|
|
protected final override val message: R|kotlin/String| = String(expression expected)
|
|
protected get(): R|kotlin/String|
|
|
|
|
}
|
|
|
|
}
|
|
FILE: b.kt
|
|
public abstract class B : R|kotlin/Any| {
|
|
public constructor(): R|B| {
|
|
super<R|kotlin/Any|>()
|
|
}
|
|
|
|
protected abstract val message: R|kotlin/String|
|
|
protected get(): R|kotlin/String|
|
|
|
|
}
|