blob: 834e450feac7f088a157c8cb996314b1ed571353 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
public class PR83563_1 {
public static void main(String[] args) {
new NestedTest().run();
int c = PertypewithinTest.aspectOf(PR83563_1.class).cnt;
if (c!=2)
throw new RuntimeException("Expected 2 advice executions: "+c);
}
static class NestedTest implements Runnable {
public void run() {
System.out.println("Running...");
}
}
}
aspect PertypewithinTest pertypewithin(PR83563_1) {
public static int cnt = 0;
before() : execution(* *.*(..)) {
cnt++;
System.out.println(thisJoinPointStaticPart);
}
}
|