aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indy/two/Asp.java
blob: 329822c9ddd93172ff1259777ca98b2251db10c5 (plain)
1
2
3
4
5
6
aspect Aspect {

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