summaryrefslogtreecommitdiffstats
path: root/tests/ltw/inclExcl/tracing/Tracer.aj
blob: 691eefcbe88781365cd798b54040ed84486dba68 (plain)
1
2
3
4
5
6
7
package tracing;

public aspect Tracer {
    before() : execution(* foo()) {
        System.err.println(thisJoinPoint);
    }
}