Files
kotlin-fork/idea/testData/refactoring/introduceVariable/NameSuggestionCheckVisibility.kt.after
T
2015-06-29 19:36:48 +03:00

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()