interface Test { public open fun test() public open val testProp : Int } class SomeTest : Test { val hello = 12 override fun test() { TODO("Not yet implemented") } override val testProp: Int get() = TODO("Not yet implemented") /** * test */ fun some() { } }