blob: 1892513c9f70fad2efa38ae221f88ee774731e9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import org.aspectj.testing.Tester;
public class PointcutFormals {
public static void main(String[] args) {
new PointcutFormals().call(0);
Tester.check(false, "Shouldn't have compiled!");
}
void call(int i) {}
}
aspect Aspect {
int n;
pointcut calls_pc1 (int n): call(void *.call(n));
pointcut calls_pc2 (int n): call(void *.call(..));
pointcut calls_pc (): call(void *.call(n));
pointcut executions_pc(): execution(void *(n));
before(): calls_pc () { }
before(): executions_pc() { }
after(): calls_pc () { }
after(): executions_pc() { }
void around(): calls_pc () { }
void around(): executions_pc() { }
}
|