internal abstract class A { internal abstract fun callme() fun callmetoo() { print("This is a concrete method.") } }