:wave: Hello! It would be really sweet if extensio...
# language-proposals
a
đź‘‹ Hello! It would be really sweet if extension functions could help resolve ambiguous function references. The exact scenario I am in is I want to write a function that does something like this:
Copy code
fun ((Context) -> View).build(): View { TODO() }

val a = ::View.build()
Currently this won’t compile because
::View
has multiple overloads.