Files
kotlin-fork/idea/testData/refactoring/extractFunction/parameters/extractSuper/superPropertyCall.kt
T

13 lines
179 B
Kotlin
Vendored

public open class Z {
val z: Int = 0
}
// SIBLING:
public class A(): Z() {
var a: Int = 1
fun foo(): Int {
<selection>return a + super.z</selection>
}
}