blob: 63388872c5d0bda66f89dff2c02b66f1fe52a2d8 [file]
// ISSUE: KT-46383
fun test(a: Any, b: Any, s: String, i: Int) {
if (a is String && b is Int) {
a == b
}
<!EQUALITY_NOT_APPLICABLE!>s == i<!>
}