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.

123456
  1. public aspect Bug {
  2. // works when specifying *.aj *.java, fails when using -sourceroots!
  3. declare soft : Exception : call(@Ann * *(..));
  4. // this works in both cases!
  5. //declare soft : Exception : call(* m2(..));
  6. }