Files
kotlin-fork/compiler/testData/ir/irText/classes/47424.kt
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

23 lines
223 B
Kotlin
Vendored

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