Is this a known bug? Kotlin suggests me to replace...
# announcements
p
Is this a known bug? Kotlin suggests me to replace
fun fail(i: Int?) = i?.let { intArrayOf(it) }
with
fun fail(i: Int?) = i?.let(::intArrayOf)
which does not compile