Files
kotlin-fork/idea/testData/refactoring/introduceParameter/propertyAccessor.kt
T
2015-04-09 13:49:20 +03:00

4 lines
85 B
Kotlin
Vendored

var foo: Int = 1
set(m: Int) {
val t = <selection>m + 1</selection>
}