c2b09d3b1e
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
6 lines
164 B
Kotlin
6 lines
164 B
Kotlin
interface Resolve<caret>Me : A, E {}
|
|
interface C : ResolveMe {}
|
|
interface D : ResolveMe {}
|
|
interface E : F {}
|
|
interface F : D, C {}
|
|
interface NonLoopedInterface : C |