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