Files
kotlin/idea/testData/refactoring/extractFunction/basic/privateMemberRef.kt

8 lines
118 B
Kotlin
Vendored

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