You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Complex.java 209B

123456789
  1. interface A {}
  2. interface B {}
  3. abstract aspect Parent< V extends A > {}
  4. abstract aspect Child< V extends A & B > extends Parent< V > {}
  5. public class Complex {
  6. public static void main(String [] argv) {
  7. }
  8. }