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.

Code.java 276B

1234567891011121314151617181920
  1. public class Code extends A implements I {
  2. public static void main(String[] argv) {
  3. Code code = new Code();
  4. code.am();
  5. code.im();
  6. }
  7. }
  8. class A {
  9. public void am() {}
  10. }
  11. interface I {
  12. }
  13. aspect X {
  14. public void I.im() {}
  15. before(): call(* A+.*m(..)) {}
  16. }