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.

BadCCutSig.java 229B

12345678910
  1. package errors;
  2. aspect BadCCutSig {
  3. int bar(int a, int b, int c) { return 0; }
  4. pointcut cut(BadCCutSig b): target(b) && call(int bar(int, int, int));
  5. before(BadCCutSig b): cut() { // SHOULD BE: cut(b)
  6. }
  7. }