why not just: ``` if (foo != null) { foo.someth...
# announcements
g
why not just:
Copy code
if (foo != null) {
   foo.something // foo smartcasted to non-nullable type
} else {
}