https://kotlinlang.org logo
e

ean5533

09/15/2016, 10:38 PM
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?