// IS_APPLICABLE: false fun doSomething(a: T) {} fun foo() { val a = true val b = false when (a && b) { else -> doSomething("test") } }