package demo open class TestT() { open fun getT() { } } open class U() { open fun main() { var t: TestT? = TestT() t?.getT() t?.getT() t?.getT() } }