mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
13 lines
407 B
Kotlin
Vendored
13 lines
407 B
Kotlin
Vendored
annotation class AnnProp
|
|
annotation class AnnField
|
|
annotation class AnnProp2
|
|
annotation class AnnGetter
|
|
annotation class AnnSetter
|
|
annotation class AnnParam
|
|
|
|
public class A(@AnnParam @field:AnnField @property:AnnProp2 val x: Int, @param:AnnParam @get:AnnGetter @set:AnnSetter var y: Int) {
|
|
|
|
@AnnProp @field:AnnField @property:AnnProp2 @get:AnnGetter @set:AnnSetter @sparam:AnnParam
|
|
var p: Int = 0
|
|
|
|
} |