Files
kotlin-fork/j2k/testData/multiFile/AnnotationWithArrayParameter/external/SomeAnnotation.java
T
Simon Ogorodnik 4710f709ce Fix for KT-10545
//TODO unfix: see KT-14305
2016-10-12 18:10:55 +03:00

8 lines
196 B
Java
Vendored

package test;
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
public @interface SomeAnnotation {
String[] some() default {};
int[] same() default {};
}