aboutsummaryrefslogtreecommitdiffstats
path: root/tests/pureJava/KeywordPointcut.java
blob: a2559565b6a3d00c3cdab75f309269c5a4a2f7d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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() {
    }
}