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

7 lines
108 B
Kotlin

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