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.

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