It would get ultra confusing when you have nullabl...
# language-proposals
e
It would get ultra confusing when you have nullable parameters with default values:
Copy code
fun something(val foo: Int? = 100)
val bar: Int? = null
something(bar) // should this call something with 100 or with null?