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

6 lines
132 B
Kotlin

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