blob: 4d9ef1f18de55b3d8d73363d72046793218ca4e3 [file]
// RUN_PIPELINE_TILL: BACKEND
fun foo(d: Any?) {
if (d is String?) {
d!!
doString(d)
}
}
fun doString(s: String) = s
/* GENERATED_FIR_TAGS: checkNotNullCall, functionDeclaration, ifExpression, isExpression, nullableType, smartcast */