--- /dev/null
+import java.util.ArrayList;
+
+public class AspectBreaker extends ArrayList<ICounterValue[]> {
+ private static final long serialVersionUID = 1L;
+
+ public AspectBreaker() {
+ }
+
+ public boolean test(ICounterValue[] obj) {
+ this.size();
+
+ return false;
+ }
+}
+
+interface ICounterValue {
+
+}
+
+aspect X {
+ before(): call(* *(..)) {}
+}
// runTest("new pointcut designators in a reference pointcut");
// }
+ //public void testGenericTypeParameterizedWithArrayType_pr167197() { runTest("generic type parameterized with array type");}
+
+
+ //public void testWrongNumberOfTypeParameters_pr176991() { runTest("wrong number of type parameters");}
public void testItdOnGenericInnerInterface_pr203646() { runTest("npe with itd on inner generic interface");}
public void testItdOnGenericInnerInterface_pr203646_A() { runTest("npe with itd on inner generic interface - exampleA");}
public void testItdOnGenericInnerInterface_pr203646_B() { runTest("npe with itd on inner generic interface - exampleB");}
<!-- AspectJ v1.6.0 Tests -->
<suite>
+ <ajc-test dir="bugs154/pr176991" title="wrong number of type parameters">
+ <compile options="-1.5" files="AspectJBugTestCase.java"/>
+ </ajc-test>
+
+ <ajc-test dir="bugs154/pr167197" title="generic type parameterized with array type">
+ <compile options="-1.5" files="AspectBreaker.java"/>
+ </ajc-test>
+
+
<ajc-test dir="bugs154/pr203646" title="npe with itd on inner generic interface">
<compile options="-1.5" files="Bang.java"/>
<!--compile options="-1.5 -emacssym" files="Bang.java"/-->