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.

Parse6.java 234B

12345678910111213141516171819202122
  1. import java.util.*;
  2. class Base<N> {
  3. public List<N> f1;
  4. public void m1(List<N> ns) {}
  5. }
  6. aspect X {
  7. public Base<Z>.new(Z aNumber) {
  8. this() ;
  9. }
  10. public List<Z> Base<Z>.f2;
  11. public void Base<Z>.m2(List<Z> ns) {}
  12. }