blob: 15d95bd26994fdf03e1e3396e8c018694cf17b9e [file]
// RUN_PIPELINE_TILL: BACKEND
// Based on KT-9033
fun f(s: String) = s
fun foo(s: String?) {
s?.let { f(<!DEBUG_INFO_SMARTCAST!>s<!>) }
s?.let { f(it) }
}
/* GENERATED_FIR_TAGS: functionDeclaration, lambdaLiteral, nullableType, safeCall, smartcast */