How to call extension function of the base class in a derived class using the super keyword?
I tried to call using super but it doesn\'t work.
open
This will do:
(this as abc).sum()
super does not work as extension functions are not members of the base class to be overridden in derived classes.
super