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

6 lines
112 B
Kotlin
Vendored

class Foo {
val foo: String = ""
@Deprecated("") <caret>get() {
return field
}
}