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.

pr131932.aj 292B

123456789101112131415161718192021
  1. import java.util.List;
  2. aspect Slide74 {
  3. public X Bar<X>.getFirst() {
  4. return lts.get(0);
  5. }
  6. <T> Foo<T>.new(List<T> elements) { this(); }
  7. private List<C> Bar<C>.children;// = new ArrayList<C>();
  8. static class Bar<T> {
  9. List<T> lts;
  10. }
  11. }
  12. class Foo<T> {
  13. }