blob: 3a009c619af2c540af6c6a88be38db4a50635c3e [file] [log] [blame]
// PROBLEM: none
fun main(args: Array<String>) {
val a: Testtt? = Testtt()
// Controversial case, better to do nothing here
if (a<caret> != null && a.a?.a != null) {
}
}
class Testtt {
val a: Testtt? = null
}