Consider this code:
var unit: Unit = null
unit: Unit = ()
a) Why am I allowed to assign null to a value class? (see ยง12.2.3)
b) Why does the null get converted to ()?
|
feedback
|
|
From the scala specification section 6.26.1:
In other words, your code is equivalent to
The | |||
|
feedback
|
()gets converted to null? – Ken Bloom Apr 24 '11 at 17:11