assertEquals(2l, longArr[1]);
assertEquals(6l, longArr[2]);
}
public void testFieldAnn6() {
final AnnotationReader reader = AnnotationReader.getReaderFor(Target.FIELD.getDeclaringClass());
Annotation annotation = reader.getAnnotation("test.TestAnnotations$Complex", Target.FIELD);
Class type = annotation.annotationType();
assertEquals(TestAnnotations.Complex.class, type);
TestAnnotations.Complex ann = (TestAnnotations.Complex)annotation;
assertEquals(3, ann.i());