mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
19 lines
335 B
Kotlin
Vendored
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
|
|
}
|