Files
kotlin-fork/compiler/testData/ir/irText/classes/47424.kt.txt
T
Roman Artemev 6993b86d3b [IR] Fix IrCapturedType equals/hashCode
It could lead to SOE if CT has itself as superType
- fix KT-47424
2021-06-28 20:43:14 +03:00

34 lines
279 B
Plaintext
Vendored

package com.example
interface Aa {
}
interface Ab<T : Ab<T>> : Aa {
}
interface Ba {
}
interface Bb<T : Bb<T>> : Ab<T>, Ba {
}
interface Ca {
abstract val b: Ba
abstract get
}
interface Cb {
abstract val b: Bb<*>
abstract get
}
interface C : Cb, Ca {
}