// PROBLEM: none fun main(args: Array) { val a: Testtt? = Testtt() // Controversial case, better to do nothing here if (a != null && a.a?.a != null) { } } class Testtt { val a: Testtt? = null }