Java annotation with target "TYPE" is now applicable to Kotlin targets "CLASSIFIER" and "FILE"

This commit is contained in:
Mikhail Glukhikh
2015-09-02 18:14:37 +03:00
parent 699f1e0a70
commit 4e3bd10cd3
4 changed files with 4 additions and 3 deletions
@@ -39,7 +39,7 @@ public open class AnnotationTargets {
public constructor parameter()
}
kotlin.annotation.target(allowedTargets = {AnnotationTarget.CLASSIFIER}) public final class type : kotlin.Annotation {
kotlin.annotation.target(allowedTargets = {AnnotationTarget.CLASSIFIER, AnnotationTarget.FILE}) public final class type : kotlin.Annotation {
public constructor type()
}
}