Is there a way to call member extension function o...
# getting-started
m
Is there a way to call member extension function of superclass? Original declaration:
Copy code
open fun List<MDL>.transformed(): List<MDL> = this
Default override code in subclass:
Copy code
override fun List<WallPost>.transformed(): List<WallPost> {
    return super.transformed()
    //           ^ Unresolved reference
}