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

5 lines
127 B
Kotlin
Vendored

// EXTRACTION_TARGET: property with initializer
// SIBLING:
class A(val a: Int){
fun foo() = <selection>a + 1</selection>
}