If what you tried were allowed the following probl...
# getting-started
d
If what you tried were allowed the following problem would arise:
Copy code
val a: Array<Node> = TODO()
val b: Array<Node?> = a
b += null // a now contains null?!
👍 1