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

10 lines
145 B
Kotlin
Vendored

// PROBLEM: none
class Test {
var x = 1
<caret>set(value) {
foo()
field = value
}
fun foo() {}
}