Files
kotlin-fork/idea/testData/intentions/convertToBlockBody/afterSetter.kt
T
2014-03-04 19:13:54 +04:00

8 lines
140 B
Kotlin

// "Convert to block body" "true"
var foo: String
get() = "abc"
set(value) {
doSet(value)
}
fun doSet(value: String){}