07767f88e2
^KT-62340
31 lines
727 B
Plaintext
Vendored
31 lines
727 B
Plaintext
Vendored
library {
|
|
// module name: <propertyAccessorAnnotations.kt>
|
|
|
|
library fragment {
|
|
// package name: test
|
|
|
|
// class name: test/Anno
|
|
|
|
public final annotation class test/Anno : kotlin/Annotation {
|
|
|
|
public constructor(value: kotlin/String)
|
|
|
|
public final val value: kotlin/String
|
|
public final get
|
|
}
|
|
|
|
package {
|
|
|
|
@test/Anno(value = "property")
|
|
public final val v1: kotlin/String /* = "" */
|
|
public final get
|
|
|
|
public final var v2: kotlin/String
|
|
@test/Anno(value = "getter")
|
|
public final /* non-default */ get
|
|
@test/Anno(value = "setter")
|
|
public final /* non-default */ set(@test/Anno(value = "setparam") value: kotlin/String)
|
|
}
|
|
}
|
|
}
|