Files
kotlin-fork/idea/testData/refactoring/extractFunction/basic/privateMemberRef.kt
T
2014-04-22 18:45:55 +04:00

8 lines
123 B
Kotlin

// NEXT_SIBLING:
class A {
private val t: Int = 1
fun foo(): Int {
return <selection>t</selection>
}
}