blob: e6bdd14f677a257a7032bfeeb72afa4769f7a75f [file]
// RUN_PIPELINE_TILL: BACKEND
fun baz(s: String?): String {
val t = if (s == null) {
""
}
else {
val u: String? = null
when (u) {
null -> ""
else -> u
}
}
return t
}
/* GENERATED_FIR_TAGS: equalityExpression, functionDeclaration, ifExpression, localProperty, nullableType,
propertyDeclaration, smartcast, stringLiteral, whenExpression, whenWithSubject */