summaryrefslogtreecommitdiffstats
path: root/weaver/testdata/forAsmDelegateTesting/SimpleAspect.java
blob: b5c4abe2e2307727233c313649765461f827d132 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
public aspect SimpleAspect {
  pointcut p(): call(* *(..));

  before(): p() {
    
  }

  int SimpleAspect.i;

  public void SimpleAspect.m() { }

}