summaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/pr329111/base/src/AJ.java
blob: 9bbb2be5a4e1b17b0bac1b186dfef0a66c323dbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
public aspect AJ {

    class X{}
    interface Y {}

    declare parents : X implements Y;
    declare soft : Exception : execution(void x());

    void x() {
        throw new Exception();
    }
}