[FIR] Relax incompatibleEnumAndUnrelatedInterfaceThroughTypeParameter

This commit is contained in:
Nikolay Lunyak
2023-10-18 18:04:33 +03:00
committed by Space Team
parent 3058f2eaff
commit c6bec2fa75
2 changed files with 4 additions and 4 deletions
@@ -107,6 +107,6 @@ interface A
enum class G : B
fun <I : A> incompatibleEnumAndUnrelatedInterfaceThroughTypeParameter(x: G?, i: I?) {
<!INCOMPATIBLE_ENUM_COMPARISON_ERROR!>x == i<!>
<!INCOMPATIBLE_ENUM_COMPARISON!>x == i<!>
}