Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/classHeader/objectParents.kt
T
2019-02-14 12:31:42 +03:00

12 lines
308 B
Kotlin
Vendored

interface I<F, G>
val aImpl: A.Interface
get() = null!!
object A : <!UNRESOLVED_REFERENCE!>Nested<!>(), <!DELEGATION_NOT_TO_INTERFACE, UNRESOLVED_REFERENCE!>Interface<!> by aImpl, I<<!UNRESOLVED_REFERENCE!>Nested<!>, <!UNRESOLVED_REFERENCE!>Interface<!>> {
class Nested
interface Interface
}