Files
kotlin/compiler/testData/loadJava/compiledKotlin/annotations/withUseSiteTarget/PropertyAndAccessor.kt
2019-05-29 15:37:09 +02:00

19 lines
335 B
Kotlin
Vendored

package test
annotation class A(val value: String)
annotation class B(val value: Array<String>)
interface I {
@A("property")
@get:B(["getter"])
var propertyAndGetter: Int
@A("property")
@set:B(["setter"])
var propertyAndSetter: Int
@get:A("getter")
@set:B(["setter"])
var getterAndSetter: Int
}