--- /dev/null
+interface A {}
+interface B {}
+abstract aspect Parent< V extends A > {}
+abstract aspect Child< V extends A & B > extends Parent< V > {}
--- /dev/null
+interface A {}
+abstract aspect Parent< T > {
+ public void m(T i) {}
+}
+abstract aspect Child< V extends A > extends Parent< V > {
+ public void n(V i) {}
+}
+
+public class Simple {
+ public static void main(String []argv) {
+ }
+}
public class Ajc161Tests extends org.aspectj.testing.XMLBasedAjcTestCase {
// AspectJ1.6.1
+ //public void testComplexBoundsGenericAspect_pr199130_1() { runTest("complex bounds on generic aspect - 1");}
+ //public void testComplexBoundsGenericAspect_pr199130_2() { runTest("complex bounds on generic aspect - 2");}
public void testGenericAspectAroundAdvice_pr226201() { runTest("generic aspect around advice");}
public void testCrazyGenericsInnerTypes_pr235829() { runTest("crazy generics and inner types");}
public void testAnnotationExposureGenerics_pr235597() { runTest("annotation exposure and generics");}
<!-- AspectJ v1.6.1 Tests -->
<suite>
+ <ajc-test dir="bugs161/pr199130" title="complex bounds on generic aspect - 1">
+ <compile files="Simple.java" options="-1.5"/>
+ <run class="Simple">
+ </run>
+ </ajc-test>
+
+ <ajc-test dir="bugs161/pr199130" title="complex bounds on generic aspect - 2">
+ <compile files="Complex.java" options="-1.5"/>
+ <run class="Complex">
+ </run>
+ </ajc-test>
+
<ajc-test dir="bugs161/pr226201" title="generic aspect around advice">
<compile files="IntAspTest.java" options="-1.5"/>
<run class="IntAspTest">