summaryrefslogtreecommitdiffstats
path: root/tests/bugs/pr59208/A.aj
blob: 10f4abe870ea72254a462ff837b4b06c07c9ced3 (plain)
1
2
3
4
5
6
aspect A  {
    boolean around() : (target(java.util.HashSet) && call(boolean add(..) ) )
       {
         return false;
       }
   }