// IS_APPLICABLE: false fun doSomething(a: T) {} fun foo() { val a = true val b = false val c = true if (a) { if (b && c) { doSomething("test") } } }