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.

Code4.aj 266B

1234567891011121314151617
  1. import java.io.*;
  2. interface Persistable<ID extends Serializable> {
  3. }
  4. public aspect Code4 {
  5. public interface I<ID extends Serializable> extends Persistable<ID> {
  6. }
  7. public static void foo() {}
  8. public <T> Z I<Z>.bar(Z foo, T that) {
  9. return foo;
  10. }
  11. }