Is there a way to use method referencing with defa...
# announcements
s
Is there a way to use method referencing with default parameters? for example
Copy code
fun sum(i1: Int, i2: Int = 3): Int = i1 + i3

val test: (Int) -> Int = ::sum