1 2 3 4 5 6 7 8 9 10 11 12
open class Foo { fun first() { } val firstProp: Int = 0 } class Bar : Foo() { fun second() val secondProp: Int = 1 }