Files
kotlin-fork/idea/testData/inspectionsLocal/redundantSetter/withAnnotaionAndTrivialBlockBody.kt
T

6 lines
110 B
Kotlin
Vendored

class Foo {
var foo: String = ""
@Deprecated("") <caret>set(x) {
field = x
}
}