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

15 lines
337 B
Java

import org.aspectj.testing.Tester;
public class KeywordPointcut {
public static void main(String[] args) {
new KeywordPointcut().realMain(args);
}
public void realMain(String[] args) {
int pointcut = 0;
pointcut += 2;
Tester.checkEqual(pointcut, 2);
}
public KeywordPointcut() {
}
}