blob: 2127104b9d299cb4ca9bcae5c71835bf7a7c3cbb [file] [log] [blame]
// "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