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

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

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

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