Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }