--- /dev/null
+import java.lang.annotation.*;
+
+public class MyClass {
+
+ @Retention({RententionPolicy.RUNTIME})
+ private @interface MyAnnotation {
+ }
+}
runTest("verification problem"); // build the code
Utils.verifyClass(ajc,"mypackage.MyAspect"); // verify it <<< BRAND NEW VERIFY UTILITY FOR EVERYONE TO TRY ;)
}
+ // public void testIncorrectAnnotationValue_pr148537() { runTest("incorrect annotation value");}
/////////////////////////////////////////
<compile files="MyAspect.java" options="-1.5 -XterminateAfterCompilation=true"/>
</ajc-test>
+ <ajc-test dir="bugs153/pr148537" title="incorrect annotation value">
+ <compile files="MyClass.java" options="-1.5"/>
+ </ajc-test>
+
</suite>
\ No newline at end of file