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()) { } }