summaryrefslogtreecommitdiffstats
path: root/tests/errors/New.java
blob: a2c23a0697746f9aba5657205de1d675c646fd26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public class New {
    public static void main(String[] args) {
        new New().go();
    }

    void go() {

    }
}

aspect A {
    pointcut p(): call(* *.new(..)) && this(*);
    before(): p() {
    }
}