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.

Broken2.java 186B

123456789101112131415161718
  1. interface I {
  2. void getCode();
  3. }
  4. abstract class C1 implements I {
  5. }
  6. abstract class C2 extends C1 {
  7. public void m() {
  8. getCode();
  9. }
  10. }
  11. aspect X {
  12. before(): call(* g*(..)) {}
  13. }