blob: 3600b25c50bcb6b7c60923d2b369449ecbe39fd3 [file]
// RUN_PIPELINE_TILL: BACKEND
// WITH_STDLIB
// ISSUE: KT-49696
interface Listener {
fun added(item: Any)
fun removed(item: Any)
}
val listeners = mutableListOf<Listener>()
fun smartCast(item: Any?) {
var current = item
if (current == null) {
current = Any()
listeners.forEach { it.added(current) }
} else {
listeners.forEach { it.removed(current) }
current = Any()
listeners.forEach { it.added(current) }
}
}
/* GENERATED_FIR_TAGS: assignment, equalityExpression, functionDeclaration, ifExpression, interfaceDeclaration,
lambdaLiteral, localProperty, nullableType, propertyDeclaration, smartcast */