mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
13 lines
204 B
Kotlin
Vendored
13 lines
204 B
Kotlin
Vendored
annotation class TestAnnotation
|
|
|
|
@TestAnnotation
|
|
val prop1: Int = 0
|
|
|
|
@get:TestAnnotation
|
|
val prop2: Int
|
|
get() = 0
|
|
|
|
@set:TestAnnotation
|
|
var prop3: Int = 0
|
|
get() = 0
|
|
set(value) { field = value } |