if you have both ```val organization: .. fun organization() ``` is there a way to get a reference to...
e
if you have both
Copy code
val organization: ..
fun organization()
is there a way to get a reference to the method without incurring in resolution ambiguity?
e
overload resolution will pick the right one if you write
Copy code
val propertyReference: KProperty<...> = ::organization
val functionReference: KFunction<...> = ::organization
👍 1
today i learned 1