選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Bug.aj 216B

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