aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs198/github_68/MyAspect.aj
blob: 1a329dfa08027c4c3f73a6dd685a1e9cd769bee9 (plain)
1
2
3
4
5
public aspect MyAspect {
  before() : execution(*.new(..)) && !within(MyAspect) {
    System.out.println(thisJoinPoint);
  }
}