Kotlin will not compile this code snippet. What is wrong?
class Employee class Manager : Employee()
In order to inherit from a class, it must be marked open
In order to inherit from a class, it must be marked override
In order to inherit from a class, it must be marked sealed
In order to inherit from a class, it must be marked public