So, trying to make methods, that use kotlin reflec...
# announcements
e
So, trying to make methods, that use kotlin reflection, working with java, I ended up needing to pass a
KMutableProperty0
(thanks to @h0tk3y for the tip). I created a class implementing that interface with all the corresponding functions for that and so far no problems. But whenever I tried to run, I get this
Error:(45, 12) java: reference to Getter is ambiguous
both interface kotlin.reflect.KProperty0.Getter in kotlin.reflect.KProperty0 and interface kotlin.reflect.KProperty.Getter in kotlin.reflect.KProperty match
The problematic function is this one https://github.com/kotlin-graphics/imgui/blob/master/src/test/java/imgui/JavaProp.java#L43-L47