Can (and should?) the runtime convert `null` value...
# language-proposals
r
Can (and should?) the runtime convert
null
values to non-nullable fun parameters with defaults implicitly to the default? i.e.
Copy code
fun something(val foo: Int = 100)
val bar: Int? = null
something(bar) // would implicitly call something(100)