Found the hard way: ```val property = KotlinClass:...
# announcements
b
Found the hard way:
Copy code
val property = KotlinClass::someProperty
val setter = property::set
or even weirder:
Copy code
val setter = (KotlinClass::someProperty)::set
But it by the cost of generation of extra anonymous class