aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs184/449739/Code2.java
blob: 1ad0fee500f1af11bf93974257196c9818ca21c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
public class Code2 {
  public static void main(String[] argv) {
    new Code2().run();
  }

  public void run() {
    new Helper().run();
  }
}

final class Helper {
  public void run() {
  }
}

aspect X {
  before(): execution(* (is(FinalType)).run(..)) {
    System.out.println(thisJoinPointStaticPart);
  }
}