kotlin.annotation.Target / Retention have now more priority than same java classes if import java.lang.annotation.* is available
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
import java.lang.annotation.*
|
||||
|
||||
<!DEPRECATED_JAVA_ANNOTATION!>@java.lang.annotation.Target(ElementType.PACKAGE)<!>
|
||||
@Target(AnnotationTarget.CLASSIFIER)
|
||||
annotation class my
|
||||
|
||||
<!DEPRECATED_JAVA_ANNOTATION!>@java.lang.annotation.Retention(RetentionPolicy.SOURCE)<!>
|
||||
@Retention(AnnotationRetention.BINARY)
|
||||
annotation class your
|
||||
Reference in New Issue
Block a user