summaryrefslogtreecommitdiffstats
path: root/tests/indy/three/Asp.java
blob: f2460c72ad32dc0f623712d25d38ad42adaf994d (plain)
1
2
3
4
5
6
aspect Aspect {

  before(): call(* *.*(..)) && !within(Aspect) {
    System.out.println(thisJoinPointStaticPart);
  }
}