summaryrefslogtreecommitdiffstats
path: root/tests/errors/PR348.java
blob: 7d2c0c3b01223d7adb2217ee13f1fbd78f1f97b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public class Mark {
    public static void main(String[] args) {
        new Mark().realMain(args);
    }
    public void realMain(String[] args) {
        new Bug().go(null);
        org.aspectj.testing.Tester.check(false, "shouldn't have compiled");
    }
}

class Bug {
    void go(String s){}
}
aspect A {
    pointcut p1(String s, int y): calls (* *.go(s)) && within(*);
    before(String y2, int y): p1(y2, int) {}
}