Yes, it’s quite easy: flow sensitive typing will t...
# announcements
d
Yes, it’s quite easy: flow sensitive typing will take care of that. ie if you have a nullable foo,
if (foo != null) { foo.doSomethingSafe() }
if foo is an immutable variable.