0b253dc815
We should resolve it in the same way as delegate constructor call to avoid access to nested class scopes ^KT-63522 Fixed ^KT-63042
12 lines
301 B
Kotlin
Vendored
12 lines
301 B
Kotlin
Vendored
interface I<F, G>
|
|
|
|
val aImpl: A.Interface
|
|
get() = null!!
|
|
|
|
object A : <!UNRESOLVED_REFERENCE!>Nested<!>(), <!UNRESOLVED_REFERENCE, UNRESOLVED_REFERENCE!>Interface<!> by aImpl, I<<!UNRESOLVED_REFERENCE!>Nested<!>, <!UNRESOLVED_REFERENCE!>Interface<!>> {
|
|
|
|
class Nested
|
|
|
|
interface Interface
|
|
}
|