Files
kotlin-fork/idea/testData/refactoring/introduceProperty/extractWithGetterToTrait.kt
T
2015-05-13 16:13:13 +02:00

8 lines
127 B
Kotlin
Vendored

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