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.

CircularAdvicePrecedence.java 247B

12345678910111213
  1. // bug 44272
  2. public aspect CircularAdvicePrecedence {
  3. pointcut crun() : execution (void run()) ;
  4. before() : crun() {}
  5. after() returning : crun() {}
  6. void around() : crun() { proceed(); }
  7. }
  8. class Runner {
  9. public void run() {}
  10. }