blob: 76878757e9507df8547b85bd8513a6eab194fb9f [file]
// ISSUE: KT-54473
interface I
class A : I
class B : I
fun test(a: A, b: B) {
a == b
a == b as I
<!EQUALITY_NOT_APPLICABLE!>a === b<!>
a === b as I
}