org.aspectj/tests/bugs150/PR93345.aj

12 lines
238 B
Plaintext

// "XLint warning for advice not applied with cflow(execution)"
class AClass {
}
aspect AnAspect {
pointcut a() : cflow( execution(* *(..)) );
before() : a() {
System.out.println("before a");
}
}