12 lines
171 B
Kotlin
Vendored
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
|
|
}
|