Files
kotlin/compiler/testData/loadJava/compiledJava/annotations/EnumInParam.txt
2015-10-16 22:13:34 +03:00

15 lines
526 B
Plaintext
Vendored

package test
public interface EnumInParam {
public final 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 class RetentionAnnotation : kotlin.Annotation {
public constructor RetentionAnnotation(/*0*/ value: kotlin.String)
public final val value: kotlin.String
}
}