Files
kotlin/compiler/testData/loadJava/compiledJava/annotations/EnumInParam.txt
Denis Zharkov 4850fd10f0 Regenerate test data containing rendered descriptors
Introduced '@' after each annotation
2015-09-18 10:14:39 +03:00

17 lines
651 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
public abstract fun 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
public abstract fun value(): kotlin.String
}
}