Files
kotlin-fork/compiler/testData/ir/irText/fakeOverrides/intersectionWithMappedSignature.kt
T
Kirill Rakhman 26fae9e83a [FIR] Allow declarations to override parts of non-trivial intersection
A class can inherit two declarations that are compatible from the
overridability standpoint and are therefore combined to a non-trivial
intersection.
At the same time, the class can declare a member declaration that
only overrides one of the intersection's members.
In this case, we break up the intersection and only add the overridden
parts to the declared member's direct overridden list.

If the class doesn't override the intersection, it exists as
intersection override, like before.

#KT-65487 Fixed
2024-02-20 09:02:39 +00:00

13 lines
235 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// FULL_JDK
// SEPARATE_SIGNATURE_DUMP_FOR_K2
// FILE: Java1.java
public interface Java1 {
Boolean remove(Integer element);
}
// FILE: 1.kt
import java.util.*;
abstract class B : ArrayList<Int>(), Java1 {
}