summaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr114436/SimpleTrace.aj
blob: 6fe2d6f4282d36d171d34dbf588134a5f4b69b73 (plain)
1
2
3
4
5
6
7
8
abstract aspect SimpleTracing perthis(tracedCall())
{
    abstract pointcut tracedCall();

    before(): tracedCall() {
        System.out.println("Entering: " + thisJoinPoint);
    }
}