summaryrefslogtreecommitdiffstats
path: root/tests/base/test110/pAspect/Aspect.java
blob: e7733f5a67635be922c3b69467efa7ca938ef72d (plain)
1
2
3
4
5
6
7
8
9
package pAspect;

public aspect Aspect {
    public static boolean ranAdvice = false;

     before (): target(pClass.Class) && call(* foo(..)) {
        ranAdvice = true;
    }
}