aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/pr117209/base/src/Aspect.java
blob: b66fd76421be41f353c39f86402b33907f79cfef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
public class Aspect {
  public static void main(String []argv) {
    new Aspect().m();
  }

  public void m() {
  }
}

aspect Y {

  public int Aspect.x = 5;
  public void Aspect.foo() {
  }
  before():execution(* m()) {
  }

  before(): staticinitialization(*) {

  }
}