blob: 4950aa6e96100548e36e741c9c4937434f802687 (
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() : cflow( execution(* *(..)) );
before() : a() {
System.out.println("before a");
}
}
|