Files
kotlin-fork/idea/testData/refactoring/introduceProperty/conflictWithParentClass.kt.after
T
2020-03-25 22:19:26 +01:00

10 lines
196 B
Plaintext
Vendored

// EXTRACTION_TARGET: property with initializer
open class Base(protected val i: Int)
class Impl(z: Int) : Base(z) {
private val i1 = 2 + 3 + i
fun foo(): Int {
return i1
}
}