summaryrefslogtreecommitdiffstats
path: root/ajde/testdata/BuildCancelling/A4.aj
blob: 5c475d4f2b2341c29d84260a3d4507c075ee8f65 (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");
  }
}