// PROBLEM: none fun foo(a: Boolean, b: Boolean, c: Boolean) { if (a) { } else if (b && c) { } else if (!c) { } else { } }