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.

pr86057.aj 173B

1234567891011
  1. abstract aspect Base {
  2. public final pointcut foo() : execution(* *(..));
  3. }
  4. aspect Sub extends Base {
  5. public pointcut foo() : execution(* *(..)) && args(String);
  6. }