Files
kotlin-fork/idea/testData/refactoring/extractFunction/asProperty/extractToClass.kt
T

11 lines
163 B
Kotlin

// EXTRACT_AS_PROPERTY
class A(val n: Int = 1) {
val m: Int = 2
// SIBLING:
fun foo(): Int {
return <selection>m + n + 1</selection>
}
}