1 2 3 4 5 6 7 8 9 10 11 12 13 14
public class StaticIntroducedReferences { } abstract aspect SuperA { static void m() {} static int i = 0; } aspect A extends SuperA { public static void StaticIntroducedReferences.main(String[] args) { i++; m(); } }