Files
kotlin-fork/idea/testData/refactoring/extractFunction/basic/privateSetter.kt
T
2014-08-12 13:09:53 +04:00

9 lines
118 B
Kotlin

// SIBLING:
class A {
var t = 1
private set
fun test() {
<selection>t = 5</selection>
}
}