Java to Kotlin annotation target mapping: relevant fix for J2K

This commit is contained in:
Mikhail Glukhikh
2015-07-17 19:20:01 +03:00
parent 1309c1f95f
commit cf26310042
4 changed files with 56 additions and 7 deletions
@@ -14,3 +14,11 @@ import java.lang.annotation.Target;
@Target({ElementType.CONSTRUCTOR, ElementType.FIELD})
@interface I {
}
@Target(ElementType.METHOD)
@interface J {
}
@Target({})
@interface K {
}