Files
kotlin-fork/idea/testData/refactoring/extractFunction/parameters/extractThis/explicitThisInMember.kt
T
2014-04-17 19:01:20 +04:00

17 lines
268 B
Kotlin

public open class Z {
val z: Int = 0
}
// NEXT_SIBLING:
public class A(): Z() {
var a: Int = 1
public inner class B(): Z() {
var b: Int = 1
fun foo(): Int {
return <selection>a + this.b + this.z</selection>
}
}
}