aboutsummaryrefslogtreecommitdiffstats
path: root/ajde.core/testdata/BuildCancelling/A4.aj
blob: aa999438c9021a1c1b0a27f41723ccc93bd0927e (plain)
1
2
3
4
5
6
7
8
9
public aspect A4 {

  pointcut m1(): call(* *print*(..));
  
  after(): m1() {
    System.err.println("After call to print");
  }
}