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