blob: 09ddb86fe8fd43a0a1075ea929cf98d1b5e1f078 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// "XLint warning for advice not applied with cflow(execution)"
class AClass {
}
aspect AnAspect {
pointcut a() : execution(* *(..)) && cflow( execution(* *(..)) );
before() : a() {
System.out.println("before a");
}
}
|