package demo class TestT { fun getT() { } } class U { fun main() { val t = TestT() t.getT() t.getT() t.getT() } }