mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 08:31:30 +00:00
15 lines
548 B
Plaintext
Vendored
15 lines
548 B
Plaintext
Vendored
package test
|
|
|
|
public interface EnumInParam {
|
|
|
|
public final annotation class MyRetention : kotlin.Annotation {
|
|
public constructor MyRetention(/*0*/ value: java.lang.annotation.RetentionPolicy)
|
|
public final val value: java.lang.annotation.RetentionPolicy
|
|
}
|
|
|
|
@test.EnumInParam.MyRetention(value = RetentionPolicy.RUNTIME) public final annotation class RetentionAnnotation : kotlin.Annotation {
|
|
public constructor RetentionAnnotation(/*0*/ value: kotlin.String)
|
|
public final val value: kotlin.String
|
|
}
|
|
}
|