I want to be able to call an abstract method of the super class like
trait B { def x: Int }
trait D extends B { def y = super.x }
However, this doesn't work. Even the abstract override modifier doesn't help.
Is it possible to do this in scala? If no, what is the reason?
I know that this works when I override method x in trait D, but is it possible from method y?
xfromD. - Till Rohrmann