Files
kotlin-fork/idea/testData/refactoring/introduceProperty/kt24615.kt
T
2020-02-11 15:52:47 +03:00

9 lines
190 B
Kotlin
Vendored

// EXTRACTION_TARGET: property with getter
open class Base(protected val i: Int)
class Impl(i: Int) : Base(i) {
fun foo(): Int {
return <selection>2 + 3 + i</selection>
}
}