1 2 3 4 5 6 7 8 9
package b; public aspect Advises { before() : execution(public void IsAdvised.doNothing()) { } int IsAdvised.x; }