ok can it be that kotlin resolves if cases a bit d...
# getting-started
j
ok can it be that kotlin resolves if cases a bit different than java? for instance:
Copy code
if (subscription != null && !subscription.isUnsubscribed)
            subscription.unsubscribe()
won't compile because
subscription
can apparently be
null