Rename LoadJava annotations test data

This commit is contained in:
Alexander Udalov
2013-09-06 20:02:23 +04:00
parent 5805598306
commit ccff9e38fe
22 changed files with 92 additions and 92 deletions

View File

@@ -0,0 +1,16 @@
package test;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
public interface ArrayOfStringInParam {
public @interface MyAnnotation {
String[] value();
}
@MyAnnotation({"a", "b", "c"})
public class A {
}
}