ean5533
fun something(val foo: Int? = 100) val bar: Int? = null something(bar) // should this call something with 100 or with null?