`lateinit` vars when accessed like this: `varname?...
# announcements
r
lateinit
vars when accessed like this:
varname?.op()
shows a warning in Android Studio (IntelliJ) as “Unnecessary safe call on a non-null receiver”, but that variable CAN be null sometimes. So isn't this lint check a bug? Need it be fixed?