Files
kotlin-fork/analysis/low-level-api-fir/testdata/lazyResolve/cyclicHierarchy3.kt
T
Dmitrii Gridin c2b09d3b1e [LL FIR] rewrite LLFirSuperTypeTargetResolver
The previous implementation had issues with
locks, publication and performance

Also, this change fixed a problem with mixed cycle inheritance

^KT-56550
^KTIJ-25430 Fixed
^KTIJ-23520 Fixed
^KT-57623 Fixed
^KTIJ-25372 Fixed
^KT-58357 Fixed
2023-05-05 12:35:46 +00:00

8 lines
203 B
Kotlin

interface B : A, ResolveMe {}
interface C1 : B {}
interface C2 : C1 {}
interface D1 : B {}
interface D2 : D1 {}
interface ResolveMe<caret> : F {}
interface F : D2, C2 {}
interface NonLoopedInterface : C2