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.

Simple.java 228B

123456789101112
  1. interface A {}
  2. abstract aspect Parent< T > {
  3. public void m(T i) {}
  4. }
  5. abstract aspect Child< V extends A > extends Parent< V > {
  6. public void n(V i) {}
  7. }
  8. public class Simple {
  9. public static void main(String []argv) {
  10. }
  11. }