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

4 lines
111 B
Kotlin
Vendored

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