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

12 lines
272 B
Kotlin
Vendored

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