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

7 lines
112 B
Kotlin
Vendored

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