Files
kotlin-fork/compiler/testData/ir/irText/classes/delegatedGenericImplementation.kt
T
Sergej Jaskiewicz da9f0e7af8 [test] Get rid of SKIP_SIGNATURE_DUMP directive in irText tests
Sometimes there are legitimate reasons to have two separate signature
dumps for K1 and K2.

^KT-61797 Fixed
2024-01-15 13:10:19 +00:00

10 lines
207 B
Kotlin
Vendored

interface IBase<A> {
fun <B> foo(a: A, b: B)
val <C> C.id: Map<A, C>?
var <D> List<D>.x: D?
}
class Test1<E>(i: IBase<E>) : IBase<E> by i
class Test2(var j: IBase<String>) : IBase<String> by j