Files
kotlin-fork/idea/testData/refactoring/introduceProperty/extractWithGetterToFile.kt
T

6 lines
117 B
Kotlin
Vendored

// EXTRACTION_TARGET: property with getter
val n: Int = 1
fun foo(): Int {
return <selection>n + 1</selection>
}