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

  pointcut m1(): call(* *print*(..));
  
  before(): m1() {
    System.err.println("Calling print");
  }
}