// PROBLEM: none var a: Testtt? = Testtt() fun main(args: Array) { if (a != null && a?.a != null) { } } class Testtt { val a: Testtt? = null }