12 lines
261 B
Plaintext
Vendored
12 lines
261 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 |