summaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/pr253067/base/src/aa/AdvisesC.aj
blob: 219ddaedbfe2c01f50783d76a1ce67c2da944552 (plain)
1
2
3
4
5
6
7
8
9
10
11
package aa;

public aspect AdvisesC {
    int C.nothing() {
        return nothing();
    }
    
    before() : call(int C.nothing()) {
        
    }
}