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

10 lines
147 B
Kotlin
Vendored

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