0 / 60 seg.

From the Supervisor subclass, how do you call the Employee class's display() method?

open class Employee(){
  open fun display() = println("Employee display()")
}
class Supervisor : Employee() {
  override fun display() {
    println("Supervisor display()")
  }
}