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

13 lines
169 B
Kotlin
Vendored

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