blob: 0a05311fcb3e22ea9dc8c22ebe7239c075ca9300 [file] [log] [blame]
open class Base {
private val xxx = 1
}
class For : Base() {
fun foo(f: For) {
val xxx = f.xxx
}
}
val For.xxx: For
get() = For()