Typical example: ``` val bool: Boolean? = null if ...
# language-proposals
k
Typical example:
Copy code
val bool: Boolean? = null
if (bool) {
  // do stuff
}
How would you expect this to behave?
👍 3
✔️ 1