summaryrefslogtreecommitdiffstats
path: root/ajde/testdata/SimpleStructureModelTest/Good.java
blob: 7cb30443dc8e26def30bc69ad1728ace8535cb50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public class Good {

  public void foo() {
    int i = 0;
    i += 1;
    i += 2;
  }

  int x = 3;
}

aspect A {
  before(): call(* *(..)) {
    System.out.println("");
  }
}