But what if I now do ```fun foo(param: String) = p...
# announcements
k
But what if I now do
Copy code
fun foo(param: String) = param.toLowerCase()
val f: (Any) -> Unit = ::foo
f(5)
See how it all breaks down?