Files
kotlin-fork/idea/testData/inspectionsLocal/redundantSetter/onlyFieldSetBody.kt
T
2018-01-30 09:59:55 +03:00

6 lines
92 B
Kotlin
Vendored

class Test {
var x = 1
<caret>set(value) {
field = value
}
}