open class Base { private val xxx = 1 } class For : Base() { fun foo(f: For) { f.xxx } } val For.xxx: For get() = For()