Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/classHeader/objectParents.fir.kt
T

12 lines
171 B
Kotlin
Vendored

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