``` val foo = getNullableString() if(!foo.isNullOr...
# announcements
k
Copy code
val foo = getNullableString()
if(!foo.isNullOrWhiteSpace()) {
   someOtherFunctionTakesNonNullableString(foo!!)
}
If I remove
!!
this doesn't compile. I could swear this should work. Right?