aboutsummaryrefslogtreecommitdiffstats
path: root/tests/errors/BadAround.java
blob: 79e564557d55b06a4b0454a4af70632c3841bd9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
public class BadAround {

}

class C {
    public String m(String s) { return "hi"; }
    public int mi() { return 2; }
}

aspect A {
    Object around(): call(String C.m(..)) {
        return new Integer(2);
    }
    Object around(Object a): call(String C.m(..)) && args(a) {
        return proceed(new Integer(2));
    }

    Object around(): call(int C.mi()) {
        return "2";
    }

    int around(): call(String C.m(..)) { // ERR, return type mismatch
        return 2;
    }
}