blob: 66cbe1518ce67ad7d48234c600832be7d8c53474 [file]
// RUN_PIPELINE_TILL: BACKEND
fun foo(b: Boolean?, c: Boolean) {
if (b != null && b) {}
if (b == null || b) {}
if (b != null) {
if (b && c) {}
if (b || c) {}
}
}
/* GENERATED_FIR_TAGS: andExpression, disjunctionExpression, equalityExpression, functionDeclaration, ifExpression,
nullableType, smartcast */