Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/classUsages/annotationWithGetUseSiteTarget2.kt.after
T
2020-04-08 19:09:53 +07:00

12 lines
267 B
Plaintext
Vendored

// "Replace with 'Bar()'" "true"
class Test {
@get:Bar()
val s: String = ""
}
@Deprecated("Replace with Bar", ReplaceWith("Bar()"))
@Target(AnnotationTarget.PROPERTY_GETTER)
annotation class Foo
@Target(AnnotationTarget.PROPERTY_GETTER)
annotation class Bar