Hi there!
How can I do a method reference to a super class method?
In Java 8 you can do:
SubClass.super::method
However, in Kotlin it seems only to work a top level reference like that:
this::method
The following doesn’t work:
super::method
Do I miss something or is it not possible yet?