felislynx
open class A { open var FOO = 1 init{ testFoo() } fun testFoo(){ Log.d("TEST","$FOO") } class B:A{ override var FOO =3 }