hello. i have a question about nullable type. as I...
# announcements
r
hello. i have a question about nullable type. as I understand if a write something like
Copy code
if (field != null) {
  doSomethingWith(field)
}
compiler automatically casts field to null-safe type but when I check use some method that thecks that field not null it does not work