org.aspectj/tests/new/Binkley.java
2002-12-16 18:51:06 +00:00

17 lines
368 B
Java

import org.aspectj.testing.Tester;
public class Binkley {
public static void main(String[] args) {
new Binkley().realMain(args);
}
public void realMain(String[] args) {
Tester.check(true, "compiled!");
}
}
aspect A percflow(pc())
{
pointcut pc() : within(Binkley);
before(): cflow(pc()) && !(call (new())) && !within(A) { }
}