13 lines
156 B
Plaintext
Vendored
13 lines
156 B
Plaintext
Vendored
open class Base {
|
|
private val xxx = 1
|
|
}
|
|
|
|
class For : Base() {
|
|
fun foo(f: For) {
|
|
val xxx = f.xxx
|
|
}
|
|
}
|
|
|
|
val For.xxx: For
|
|
get() = For()
|