fun main(args: Array) { val b: Base = Derived() val a = 1 } open class Base class Derived: Base() { fun funInDerived() { } } // RUNTIME_TYPE: Derived